diff --git a/web/src/pages/DashboardPage.tsx b/web/src/pages/DashboardPage.tsx index 7e08a51..a637474 100644 --- a/web/src/pages/DashboardPage.tsx +++ b/web/src/pages/DashboardPage.tsx @@ -916,7 +916,6 @@ export default function DashboardPage() { transactions={data.recentTransactions} hasData={hasTx} rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined} - userTimezone={userTimezone} /> @@ -1118,7 +1117,6 @@ export default function DashboardPage() { transactions={data.recentTransactions} hasData={hasTx} rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined} - userTimezone={userTimezone} /> )} @@ -1280,12 +1278,10 @@ function RecentTransactionsPanel({ transactions, hasData, rangeLabel, - userTimezone, }: { transactions: DashboardResponse["recentTransactions"]; hasData: boolean; rangeLabel?: string; - userTimezone: string; }) { const title = rangeLabel ? "Transactions in window" : "Recent transactions"; const visibleTransactions = transactions.slice(0, 10);