From 31cefc8e7ab92d66af88b7844b34e95f18387767 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Tue, 14 Oct 2025 18:32:15 -0600 Subject: [PATCH] fix fullscreen button on pwa --- src/pages/parts/player/PlayerPart.tsx | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/pages/parts/player/PlayerPart.tsx b/src/pages/parts/player/PlayerPart.tsx index 59404d78..f7901b52 100644 --- a/src/pages/parts/player/PlayerPart.tsx +++ b/src/pages/parts/player/PlayerPart.tsx @@ -210,17 +210,18 @@ export function PlayerPart(props: PlayerPartProps) {
- {isPWA && status === playerStatus.PLAYING ? ( - - ) : ( -
- {isHoldingFullscreen ? : } -
+ {status === playerStatus.PLAYING && ( + <> + {isPWA && } +
+ {isHoldingFullscreen ? : } +
+ )}