From e9738420ea99f674f5840a7c6962cf4d7fc5486a Mon Sep 17 00:00:00 2001 From: olsch01 Date: Mon, 16 Mar 2026 21:21:15 -0400 Subject: [PATCH] fix: swap Quick Stats and Recent Transactions on dashboard Co-Authored-By: Claude Opus 4.6 --- .../src/pages/dashboard/DashboardPage.tsx | 58 +++++++++---------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/frontend/src/pages/dashboard/DashboardPage.tsx b/frontend/src/pages/dashboard/DashboardPage.tsx index 9836106..4af9953 100644 --- a/frontend/src/pages/dashboard/DashboardPage.tsx +++ b/frontend/src/pages/dashboard/DashboardPage.tsx @@ -493,35 +493,6 @@ export function DashboardPage() { - - Recent Transactions - {(data?.recent_transactions || []).length === 0 ? ( - No transactions yet. Start by entering journal entries. - ) : ( - - - {(data?.recent_transactions || []).map((tx) => ( - - - {new Date(tx.entry_date).toLocaleDateString()} - - - {tx.description} - - - - {tx.entry_type} - - - - {fmt(tx.amount)} - - - ))} - -
- )} -
Quick Stats @@ -582,6 +553,35 @@ export function DashboardPage() { + + Recent Transactions + {(data?.recent_transactions || []).length === 0 ? ( + No transactions yet. Start by entering journal entries. + ) : ( + + + {(data?.recent_transactions || []).map((tx) => ( + + + {new Date(tx.entry_date).toLocaleDateString()} + + + {tx.description} + + + + {tx.entry_type} + + + + {fmt(tx.amount)} + + + ))} + +
+ )} +
)}