aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/index.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2025-02-01 23:45:40 +0000
committerMohamedBassem <me@mbassem.com>2025-02-01 23:46:27 +0000
commitb643c59ef7f9c380bceca6e6bf69846143b22ccb (patch)
tree666f6ce63e4bd12920e6956d59e752de81919a3f /apps/mobile/app/index.tsx
parent5c147350eaafe5e32c731e187a1f907d1db93bad (diff)
downloadkarakeep-b643c59ef7f9c380bceca6e6bf69846143b22ccb.tar.zst
fix(mobile): Fix flicker on sign in page. Fixes #911
Diffstat (limited to 'apps/mobile/app/index.tsx')
-rw-r--r--apps/mobile/app/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mobile/app/index.tsx b/apps/mobile/app/index.tsx
index 702269a5..dbbea97e 100644
--- a/apps/mobile/app/index.tsx
+++ b/apps/mobile/app/index.tsx
@@ -11,6 +11,6 @@ export default function App() {
} else if (isLoggedIn) {
return <Redirect href="dashboard" />;
} else {
- return <Redirect href="server-address" />;
+ return <Redirect href="signin" />;
}
}