diff --git a/packages/wyatt_authentication_bloc/lib/src/data/repositories/authentication_repository_impl.dart b/packages/wyatt_authentication_bloc/lib/src/data/repositories/authentication_repository_impl.dart index a3ecfb6f..58196fe7 100644 --- a/packages/wyatt_authentication_bloc/lib/src/data/repositories/authentication_repository_impl.dart +++ b/packages/wyatt_authentication_bloc/lib/src/data/repositories/authentication_repository_impl.dart @@ -132,7 +132,7 @@ class AuthenticationRepositoryImpl ); await dataResult.foldAsync( _authenticationLocalDataSource.storeData, - (error) => throw error, + (error) async => error, ); } return account;