fix: ContentView isAuthenticated → isLoggedIn
All checks were successful
Security Checks / dependency-audit (push) Successful in 12s
Security Checks / secret-scanning (push) Successful in 3s
Security Checks / dockerfile-lint (push) Successful in 3s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yusuf Suleman
2026-04-03 01:59:20 -05:00
parent fdb8aeba8a
commit c934791a4a

View File

@@ -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()