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} transactions={data.recentTransactions}
hasData={hasTx} hasData={hasTx}
rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined} rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined}
userTimezone={userTimezone}
/> />
</section> </section>
</section> </section>
@@ -1118,7 +1117,6 @@ export default function DashboardPage() {
transactions={data.recentTransactions} transactions={data.recentTransactions}
hasData={hasTx} hasData={hasTx}
rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined} rangeLabel={useTrendWindowPagination ? trendWindowLabel : undefined}
userTimezone={userTimezone}
/> />
</section> </section>
)} )}
@@ -1280,12 +1278,10 @@ function RecentTransactionsPanel({
transactions, transactions,
hasData, hasData,
rangeLabel, rangeLabel,
userTimezone,
}: { }: {
transactions: DashboardResponse["recentTransactions"]; transactions: DashboardResponse["recentTransactions"];
hasData: boolean; hasData: boolean;
rangeLabel?: string; rangeLabel?: string;
userTimezone: string;
}) { }) {
const title = rangeLabel ? "Transactions in window" : "Recent transactions"; const title = rangeLabel ? "Transactions in window" : "Recent transactions";
const visibleTransactions = transactions.slice(0, 10); const visibleTransactions = transactions.slice(0, 10);