build is fr good now
All checks were successful
Deploy / deploy (push) Successful in 59s
Security Tests / security-non-db (push) Successful in 23s
Security Tests / security-db (push) Successful in 32s

This commit is contained in:
2026-04-02 22:21:56 -05:00
parent e51b9a939c
commit 46eb54f341

View File

@@ -916,7 +916,6 @@ export default function DashboardPage() {
transactions={data.recentTransactions}
hasData={hasTx}
rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined}
userTimezone={userTimezone}
/>
</section>
</section>
@@ -1118,7 +1117,6 @@ export default function DashboardPage() {
transactions={data.recentTransactions}
hasData={hasTx}
rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined}
userTimezone={userTimezone}
/>
</section>
)}
@@ -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);