From 281f0d3782c3b4dbd2d182ed3ae68076d2e3653a Mon Sep 17 00:00:00 2001 From: siddharthd Date: Sat, 14 Mar 2026 21:11:34 +1100 Subject: [PATCH] fix(shared): show full description and notes in split transactions table --- src/app/shared/page.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/app/shared/page.tsx b/src/app/shared/page.tsx index 2c9bbab..0901c54 100644 --- a/src/app/shared/page.tsx +++ b/src/app/shared/page.tsx @@ -306,9 +306,14 @@ export default function SharedPage() { return ( {formatDate(tx.transaction_date)} - -

{tx.effective_merchant || tx.description}

-

{tx.description}

+ +

{tx.effective_merchant || tx.description}

+ {tx.effective_merchant && ( +

{tx.description}

+ )} + {tx.notes && ( +

{tx.notes}

+ )} {formatAmount(tx.amount, tx.transaction_type)}