fix: redirect to /briefing after auth (was /notes which no longer exists)

This commit is contained in:
2026-03-12 00:32:38 -04:00
parent c8f3861eb5
commit e86d1a59af
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ class _SplashScreenState extends ConsumerState<SplashScreen> {
if (!mounted) return;
final status = ref.read(authProvider);
if (status == AuthStatus.authenticated) {
context.go(Routes.notes);
context.go(Routes.briefing);
} else {
context.go(Routes.login);
}