diff --git a/src/components/dashboard/dashboard-shell.tsx b/src/components/dashboard/dashboard-shell.tsx
index 9625d69..4b44170 100644
--- a/src/components/dashboard/dashboard-shell.tsx
+++ b/src/components/dashboard/dashboard-shell.tsx
@@ -3430,6 +3430,11 @@ export function DashboardShell({
{currencyFormatter.format(donation.amount)}
{donation.expenseTitle ? ` ยท ${donation.expenseTitle}` : ""}
+ {donation.description ? (
+
+ {donation.description}
+
+ ) : null}
setEditingDonationId(donation.id)}>
@@ -3473,6 +3478,15 @@ export function DashboardShell({
onChange={(event) => updateDonationDraft(donation, { amount: event.target.value })}
fullWidth
/>
+ updateDonationDraft(donation, { description: event.target.value })}
+ fullWidth
+ multiline
+ minRows={2}
+ />