From 4cab7db44866e1e71caf7d8aadcc4c187565e974 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Wed, 1 Jan 2025 15:41:18 -0600 Subject: [PATCH] fuck --- components/Player/helpers/buttons.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/components/Player/helpers/buttons.tsx b/components/Player/helpers/buttons.tsx index 3776df99..9c921ad6 100644 --- a/components/Player/helpers/buttons.tsx +++ b/components/Player/helpers/buttons.tsx @@ -11,16 +11,19 @@ export function playPauseButton(playbackState: State | undefined, play: Function switch (playbackState) { case (State.Playing) : { - button = pause()} /> + button = pause()} />; + break; } case (State.Buffering) : case (State.Loading) : { - button = + button = ; + break; } default : { button = play()} /> + break; } }