diff --git a/lib/screens/account/me/settings_connections.dart b/lib/screens/account/me/settings_connections.dart index b0f512a..f07f241 100644 --- a/lib/screens/account/me/settings_connections.dart +++ b/lib/screens/account/me/settings_connections.dart @@ -150,7 +150,7 @@ class AccountConnectionNewSheet extends HookConsumerWidget { Navigator.pop(context, true); } } catch (err) { - if (err is SignInWithAppleCredentialsException) return; + if (err is SignInWithAppleAuthorizationException) return; showErrorAlert(err); } finally { if (context.mounted) hideLoadingModal(context); diff --git a/lib/screens/auth/login.dart b/lib/screens/auth/login.dart index ca6c9ac..d747a69 100644 --- a/lib/screens/auth/login.dart +++ b/lib/screens/auth/login.dart @@ -597,7 +597,7 @@ class _LoginLookupScreen extends HookConsumerWidget { if (context.mounted) Navigator.pop(context, true); }); } catch (err) { - if (err is SignInWithAppleCredentialsException) return; + if (err is SignInWithAppleAuthorizationException) return; showErrorAlert(err); } finally { if (context.mounted) hideLoadingModal(context);