From 4f50526a1db3db31c5a17370234f7145c5d234d3 Mon Sep 17 00:00:00 2001 From: Maarten Date: Thu, 8 Aug 2024 13:14:24 +0200 Subject: [PATCH] Fix main route --- app/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.tsx b/app/index.tsx index 595f5eb..fa2ba07 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -22,7 +22,7 @@ export default function OnboardStartScreen() { const response = await Request.post( 'sessions/get', { token: token } ); if (response.success) { // @ts-ignore - router.replace( '/(tabs)/settings' ); + router.replace( '/(tabs)' ); } else { router.replace( '/(onboarding)/start' ); }