diff --git a/src/tile/SpotlightTile.tsx b/src/tile/SpotlightTile.tsx index e274877c..b510b603 100644 --- a/src/tile/SpotlightTile.tsx +++ b/src/tile/SpotlightTile.tsx @@ -290,7 +290,8 @@ export const SpotlightTile: FC = ({ ? VolumeOffIcon : VolumeOnIcon; const screenShareVolume = useBehavior( - isScreenShare && (currentMedia as RemoteScreenShareViewModel).playbackVolume$ != null + isScreenShare && + (currentMedia as RemoteScreenShareViewModel).playbackVolume$ != null ? (currentMedia as RemoteScreenShareViewModel).playbackVolume$ : constant(0), );