change default sync status display mode (#2784)
Serhii committed
Jan 8, 2026 at 01:31 UTC
3179277c420ced2fd2a9523f627fcb16f4088877
1 file changed
+2
-2
lib/store/settings_store.dart
+2
-2
@@ -1068,7 +1068,7 @@ abstract class SettingsStoreBase with Store {
1068
final showAddressBookPopupEnabled =
1069
sharedPreferences.getBool(PreferencesKey.showAddressBookPopupEnabled) ?? true;
1070
final syncStatusDisplayMode = SyncStatusDisplayModeExtension.fromString(
1071
- sharedPreferences.getString(PreferencesKey.syncStatusDisplayMode) ?? SyncStatusDisplayMode.eta.name);
1071
+ sharedPreferences.getString(PreferencesKey.syncStatusDisplayMode) ?? SyncStatusDisplayMode.blocksRemaining.name);
1072
final exchangeStatus = ExchangeApiMode.deserialize(
1073
raw: sharedPreferences.getInt(PreferencesKey.exchangeStatusKey) ??
1074
ExchangeApiMode.enabled.raw);
@@ -1595,7 +1595,7 @@ abstract class SettingsStoreBase with Store {
1595
sharedPreferences.getBool(PreferencesKey.showAddressBookPopupEnabled) ??
1596
showAddressBookPopupEnabled;
1597
syncStatusDisplayMode = SyncStatusDisplayModeExtension.fromString(
1598
- sharedPreferences.getString(PreferencesKey.syncStatusDisplayMode) ?? SyncStatusDisplayMode.eta.name);
1598
+ sharedPreferences.getString(PreferencesKey.syncStatusDisplayMode) ?? SyncStatusDisplayMode.blocksRemaining.name);
1599
exchangeStatus = ExchangeApiMode.deserialize(
1600
raw: sharedPreferences.getInt(PreferencesKey.exchangeStatusKey) ??
1601
ExchangeApiMode.enabled.raw);