From 65045c264b417f741e2e9d3e10c3695052a52407 Mon Sep 17 00:00:00 2001 From: Jake Janicke Date: Wed, 4 Mar 2026 16:11:39 -0600 Subject: [PATCH] Fix formatting Signed-off-by: Jake Janicke --- src/tile/SpotlightTile.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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), );