diff --git a/ui/imports/shared/stores/RootStore.qml b/ui/imports/shared/stores/RootStore.qml index 8626bfe213..5a0d2d1804 100644 --- a/ui/imports/shared/stores/RootStore.qml +++ b/ui/imports/shared/stores/RootStore.qml @@ -24,8 +24,6 @@ QtObject { property TokenMarketValuesStore marketValueStore: TokenMarketValuesStore {} - property var flatNetworks: networksModule.flatNetworks - function setNeverAskAboutUnfurlingAgain(value) { localAccountSensitiveSettings.neverAskAboutUnfurlingAgain = value; } diff --git a/ui/imports/shared/views/HistoryView.qml b/ui/imports/shared/views/HistoryView.qml index 290228d8b0..52975d5284 100644 --- a/ui/imports/shared/views/HistoryView.qml +++ b/ui/imports/shared/views/HistoryView.qml @@ -489,7 +489,7 @@ ColumnLayout { Layout.fillWidth: true modelData: transactionDelegate.model.activityEntry timeStampText: isModelDataValid ? LocaleUtils.formatRelativeTimestamp(modelData.timestamp * 1000, true) : "" - flatNetworks: RootStore.flatNetworks + flatNetworks: root.walletRootStore.flatNetworks currenciesStore: RootStore.currencyStore walletRootStore: root.walletRootStore showAllAccounts: root.showAllAccounts @@ -554,7 +554,7 @@ ColumnLayout { TransactionDelegate { Layout.fillWidth: true - flatNetworks: RootStore.flatNetworks + flatNetworks: root.walletRootStore.flatNetworks currenciesStore: RootStore.currencyStore walletRootStore: root.walletRootStore loading: true