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)} + + + ))} + +
+ )} +
)}