diff --git a/rsconcept/frontend/src/pages/HomePage.tsx b/rsconcept/frontend/src/pages/HomePage.tsx index 7c380d74..9d4a3f84 100644 --- a/rsconcept/frontend/src/pages/HomePage.tsx +++ b/rsconcept/frontend/src/pages/HomePage.tsx @@ -14,11 +14,11 @@ function HomePage() { if (!loading) { if (!user) { setTimeout(() => { - router.push(urls.manuals); + router.replace(urls.manuals); }, PARAMETER.refreshTimeout); } else { setTimeout(() => { - router.push(urls.library); + router.replace(urls.library); }, PARAMETER.refreshTimeout); } }