From f70af4efda1ad363f66637825e360ad3fa628861 Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Wed, 29 Apr 2026 16:27:02 +0300 Subject: [PATCH] fix: stuck on board issue --- src/components/MainNavBars/MainNavBars.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/MainNavBars/MainNavBars.tsx b/src/components/MainNavBars/MainNavBars.tsx index 03e314b93..1dae27a16 100644 --- a/src/components/MainNavBars/MainNavBars.tsx +++ b/src/components/MainNavBars/MainNavBars.tsx @@ -26,8 +26,9 @@ const MainNavBars = memo(({ className, route, query, children }: Props) => { const navRef = React.useRef(null); const contentRef = React.useRef(null); - useContentGamepadNavigation(contentRef, route ?? 'board'); - useVerticalNavGamepadNavigation(navRef, route ?? 'board'); + const navRoute = route === 'continue_watching' ? 'library' : (route ?? ''); + useContentGamepadNavigation(contentRef, navRoute); + useVerticalNavGamepadNavigation(navRef, navRoute); return (