From eb1e77b4c11f3aaa4b0692b4e1ecce8da7cbf4bd Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Wed, 29 Apr 2026 07:16:39 -0700 Subject: [PATCH] fix: allow next / prev particle during pause --- js/src/hooks/use-stream-navigation-keys.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/js/src/hooks/use-stream-navigation-keys.ts b/js/src/hooks/use-stream-navigation-keys.ts index dfc1a60..7235cd1 100644 --- a/js/src/hooks/use-stream-navigation-keys.ts +++ b/js/src/hooks/use-stream-navigation-keys.ts @@ -30,7 +30,6 @@ export function useStreamNavigationKeys({ useEffect(() => { const onKeyDown = (e: KeyboardEvent) => { if (isTypingTarget(e)) return; - if (selectIsPaused(usePlaybackPauseStore.getState())) return; const hasNext = currentIndex >= 0 && currentIndex < childrenLength - 1;