Fixed react whitespace error

This commit is contained in:
Ajay Ramachandran
2020-04-04 22:11:39 -04:00
parent 7af44eae66
commit 37e2fb0972

View File

@@ -67,7 +67,8 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
className={"sponsorSkipObject sponsorSkipNotice" + (this.props.fadeIn ? " sponsorSkipNoticeFadeIn" : "")} className={"sponsorSkipObject sponsorSkipNotice" + (this.props.fadeIn ? " sponsorSkipNoticeFadeIn" : "")}
style={noticeStyle} style={noticeStyle}
onMouseEnter={this.pauseCountdown.bind(this)} onMouseEnter={this.pauseCountdown.bind(this)}
onMouseLeave={this.startCountdown.bind(this)}> <tbody> onMouseLeave={this.startCountdown.bind(this)}>
<tbody>
{/* First row */} {/* First row */}
<tr id={"sponsorSkipNoticeFirstRow" + this.idSuffix}> <tr id={"sponsorSkipNoticeFirstRow" + this.idSuffix}>
@@ -110,7 +111,8 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
{this.props.children} {this.props.children}
</tbody> </table> </tbody>
</table>
); );
} }