From 345bd6cd1e32ad3643184e147a6acebabd3235f2 Mon Sep 17 00:00:00 2001 From: Simon <9295182+grimsi@users.noreply.github.com> Date: Sat, 30 Aug 2025 19:16:22 +0200 Subject: [PATCH] Fix download providers not updating on view navigation event --- app/src/main/frontend/views/GameView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/frontend/views/GameView.tsx b/app/src/main/frontend/views/GameView.tsx index 4ef6d24..44ac19e 100644 --- a/app/src/main/frontend/views/GameView.tsx +++ b/app/src/main/frontend/views/GameView.tsx @@ -46,7 +46,7 @@ export default function GameView() { }, {} as Record); setDownloadOptions(options); }); - }, []); + }, [gameId]); useEffect(() => { if (state.isLoaded && (!gameId || !state.state[parseInt(gameId)])) {