Remove possible error in notice

This commit is contained in:
Ajay Ramachandran
2021-10-02 16:05:23 -04:00
parent a88aaf4590
commit 1f43d07e16

View File

@@ -274,8 +274,8 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
if (countdownTime == 3) { if (countdownTime == 3) {
//start fade out animation //start fade out animation
const notice = document.getElementById("sponsorSkipNotice" + this.idSuffix); const notice = document.getElementById("sponsorSkipNotice" + this.idSuffix);
notice.style.removeProperty("animation"); notice?.style.removeProperty("animation");
notice.classList.add("sponsorSkipNoticeFadeOut"); notice?.classList.add("sponsorSkipNoticeFadeOut");
} }
this.setState({ this.setState({