From 8c28e3dfd386f01106fcd2c632c880e8d251cd75 Mon Sep 17 00:00:00 2001 From: Hank Grabowski Date: Fri, 24 Nov 2023 21:52:14 -0500 Subject: [PATCH] Fix move "signed in" profile to "signed out" if have problem trying to sign in during initializations --- lib/services/auth_service.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/services/auth_service.dart b/lib/services/auth_service.dart index e15ca1a..891f01a 100644 --- a/lib/services/auth_service.dart +++ b/lib/services/auth_service.dart @@ -59,6 +59,8 @@ class AccountsService extends ChangeNotifier { () async => await executeUpdatesForProfile(profile), ); } + } else { + await signOut(p, withNotification: false); } }