feat: Refactor sign-out method to use unified service call across repositories

This commit is contained in:
Achintha Isuru
2026-03-02 16:04:20 -05:00
parent 8497709356
commit e8b768b978
5 changed files with 22 additions and 17 deletions

View File

@@ -15,7 +15,7 @@ class SettingsRepositoryImpl implements SettingsRepositoryInterface {
@override
Future<void> signOut() async {
return _service.run(() async {
await _service.auth.signOut();
await _service.signOut();
});
}
}