From b80013dba1c6657095c0c08661eb64de25ff7e09 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Sat, 19 Apr 2025 12:58:11 -0400 Subject: [PATCH] Update Navigate to Replace --- app/login.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/login.jsx b/app/login.jsx index 5b663ab..0ad234f 100644 --- a/app/login.jsx +++ b/app/login.jsx @@ -55,11 +55,11 @@ export default function Login() { // Temp for Testing // if (!auth) { // setTimeout(() => { - // router.navigate('./incidents'); + // router.replace('./incidents'); // }, 1000); // } if (auth) { - router.navigate('./incidents'); + router.replace('./incidents'); } }, [auth])