Skip to content

Commit

Permalink
fix: hide accounts info in production
Browse files Browse the repository at this point in the history
  • Loading branch information
pd4d10 committed Feb 8, 2020
1 parent 8c45a70 commit 1716714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/models/auth.dart
Expand Up @@ -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();
Expand Down

0 comments on commit 1716714

Please sign in to comment.