From e087143675072b88d1249b2bc7041772c0198173 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Sun, 30 Nov 2025 12:34:04 +0100 Subject: [PATCH] fix: update transaction description and memo display for improved readability and layout consistency --- components/transactions/transaction-table.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/transactions/transaction-table.tsx b/components/transactions/transaction-table.tsx index 7550218..6d0fefb 100644 --- a/components/transactions/transaction-table.tsx +++ b/components/transactions/transaction-table.tsx @@ -232,12 +232,12 @@ export function TransactionTable({
{formatDate(transaction.date)}
-
-

+

+

{transaction.description}

{transaction.memo && ( -

+

{transaction.memo}

)}