fix(web): Fixed video unmutes when scrubbing (#9382)

Fixed video unmutes when scrubbing

Co-authored-by: Tushar Harsora <tushar.harsora.harsora@oracle.com>
This commit is contained in:
Tushar Harsora 2024-05-11 01:58:21 +05:30 committed by GitHub
parent bb4843747b
commit dd8d7732de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -63,6 +63,7 @@ export const mapSettings = persisted<MapSettings>('map-settings', {
});
export const videoViewerVolume = persisted<number>('video-viewer-volume', 1, {});
export const videoViewerMuted = persisted<boolean>('video-viewer-muted', false, {});
export const isShowDetail = persisted<boolean>('info-opened', false, {});