fix: allow next / prev particle during pause

This commit is contained in:
Arjun Patel
2026-04-29 07:16:39 -07:00
parent 1f2ab9b752
commit eb1e77b4c1
@@ -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;