diff options
author | Blueberryy <[email protected]> | 2023-04-29 15:52:24 +0500 |
---|---|---|
committer | Blueberryy <[email protected]> | 2023-04-29 15:52:24 +0500 |
commit | 4cae6e8f41f35ec0277bce0e522f3073f8e79bb2 (patch) | |
tree | f1465b2aaece555620bd92ecc9fc97e46b4c02c9 | |
parent | dc0d7d7e458bf16c4c2b8ed1df9480256aabe06f (diff) | |
download | SponsorBlock-4cae6e8f41f35ec0277bce0e522f3073f8e79bb2.tar.gz SponsorBlock-4cae6e8f41f35ec0277bce0e522f3073f8e79bb2.zip |
Real fix by mini-bomba
@mini-bomba
Co-Authored-By: mini-bomba <[email protected]>
-rw-r--r-- | src/components/NoticeComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/NoticeComponent.tsx b/src/components/NoticeComponent.tsx index 870c982e..b710480e 100644 --- a/src/components/NoticeComponent.tsx +++ b/src/components/NoticeComponent.tsx @@ -195,7 +195,7 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> { id={"skipNoticeTimerText" + this.idSuffix} key="skipNoticeTimerText" className={this.state.countdownMode !== CountdownMode.Timer ? "hidden" : ""} > - {chrome.i18n.getMessage("NoticeTimeAfterSkip").replace("{seconds}", this.state.countdownTime)} + {chrome.i18n.getMessage("NoticeTimeAfterSkip").replace("{seconds}", this.state.countdownTime.toString())} </span> ),( <img |