From 230242d006ec7e80495c26687a294033037c0d99 Mon Sep 17 00:00:00 2001 From: NJ-2020 Date: Fri, 1 Nov 2024 05:49:32 -0700 Subject: [PATCH] fix sign in link --- src/pages/ErrorPage/SessionExpiredPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ErrorPage/SessionExpiredPage.tsx b/src/pages/ErrorPage/SessionExpiredPage.tsx index a6b555e29077..5ccf70c40ab6 100644 --- a/src/pages/ErrorPage/SessionExpiredPage.tsx +++ b/src/pages/ErrorPage/SessionExpiredPage.tsx @@ -34,7 +34,7 @@ function SessionExpiredPage() { onPress={() => { if (!NativeModules.HybridAppModule) { Session.clearSignInData(); - Navigation.navigate(); + Navigation.goBack(); return; } NativeModules.HybridAppModule.closeReactNativeApp(true, false);