Hide unmute buttons after segment is finished

This commit is contained in:
Ajay Ramachandran
2021-09-01 21:03:32 -04:00
parent 4092bf9b05
commit 60e54ee129
3 changed files with 23 additions and 2 deletions

View File

@@ -71,6 +71,10 @@ class SkipNotice {
toggleSkip(): void {
this.skipNoticeRef?.current?.prepAction(SkipNoticeAction.Unskip);
}
unmutedListener(): void {
this.skipNoticeRef?.current?.unmutedListener();
}
}
export default SkipNotice;