diff --git a/src/views/desktop/insights/tabs/ExplorerChartTab.vue b/src/views/desktop/insights/tabs/ExplorerChartTab.vue
index 1b350ac2..529270dd 100644
--- a/src/views/desktop/insights/tabs/ExplorerChartTab.vue
+++ b/src/views/desktop/insights/tabs/ExplorerChartTab.vue
@@ -12,8 +12,7 @@
:disabled="loading || disabled"
:label="tt('Chart Type')"
:items="allTransactionExplorerChartTypes"
- :model-value="currentExplorer.chartType"
- @update:model-value="currentExplorer.chartType = $event as TransactionExplorerChartTypeValue"
+ v-model="currentExplorer.chartType"
/>
@@ -150,11 +146,9 @@ import {
import { type NameValue, type TypeAndDisplayName } from '@/core/base.ts';
import { Month, WeekDay } from '@/core/datetime.ts';
import {
- TransactionExplorerChartTypeValue,
TransactionExplorerChartType,
TransactionExplorerDataDimensionType,
TransactionExplorerDataDimension,
- TransactionExplorerValueMetricType,
TransactionExplorerValueMetric
} from '@/core/explorer.ts';