From c934791a4ac09651fdc17e45efbd797dbf099c5b Mon Sep 17 00:00:00 2001 From: Yusuf Suleman Date: Fri, 3 Apr 2026 01:59:20 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20ContentView=20isAuthenticated=20?= =?UTF-8?q?=E2=86=92=20isLoggedIn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- ios/Platform/Platform/ContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Platform/Platform/ContentView.swift b/ios/Platform/Platform/ContentView.swift index f80b2a2..f6bec10 100644 --- a/ios/Platform/Platform/ContentView.swift +++ b/ios/Platform/Platform/ContentView.swift @@ -7,7 +7,7 @@ struct ContentView: View { Group { if authManager.isCheckingAuth { LoadingView(message: "Checking session...") - } else if authManager.isAuthenticated { + } else if authManager.isLoggedIn { MainTabView() } else { LoginView()