diff --git a/lib/models/auth.dart b/lib/models/auth.dart index 0676515..807722d 100644 --- a/lib/models/auth.dart +++ b/lib/models/auth.dart @@ -306,7 +306,7 @@ class AuthModel with ChangeNotifier { // Read accounts try { String str = prefs.getString(StorageKeys.accounts); - Fimber.d('read accounts: $str'); + // Fimber.d('read accounts: $str'); _accounts = (json.decode(str ?? '[]') as List) .map((item) => Account.fromJson(item)) .toList();