We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1376448 commit 5e76d6aCopy full SHA for 5e76d6a
lib/app/bloc/app_bloc.dart
@@ -56,7 +56,8 @@ class AppBloc extends Bloc<AppEvent, AppState> {
56
status = AppStatus.authenticated;
57
// ignore: no_default_cases
58
default: // Fallback for any other roles not explicitly handled
59
- status = AppStatus.unauthenticated; // Treat other roles as unauthenticated for dashboard
+ status = AppStatus
60
+ .unauthenticated; // Treat other roles as unauthenticated for dashboard
61
}
62
63
// Emit user and status update
0 commit comments