Skip to content

Commit

Permalink
feat:
Browse files Browse the repository at this point in the history
  • Loading branch information
maximeroucher committed Nov 20, 2023
1 parent ae160de commit e70f52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/user/providers/user_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ class UserNotifier extends SingleNotifier2<CoreUser> {
}

Future<bool> deletePersonal() async {
return (await _userRepository.deletePersonalData());
return (await _userRepository.deletePersonalData()).isSuccessful;
}

Future<bool> askMailMigration(String mail) async {
return (await _userRepository.askMailMigration(mail));
return (await _userRepository.askMailMigration(mail)).isSuccessful;
}
}

Expand Down

0 comments on commit e70f52c

Please sign in to comment.