Remove unused state 'denied' from authentication state [skip ci]

This commit is contained in:
OmarHatem 2022-12-05 18:40:53 +02:00
parent 9330859177
commit d19f7b6d38
2 changed files with 1 additions and 9 deletions

View file

@ -26,10 +26,5 @@ void startAuthenticationStateChange(AuthenticationStore authenticationStore,
await navigatorKey.currentState!.pushNamedAndRemoveUntil(Routes.dashboard, (route) => false);
return;
}
if (state == AuthenticationState.denied) {
await navigatorKey.currentState!.pushNamedAndRemoveUntil(Routes.welcome, (_) => false);
return;
}
});
}