From 8a1b79c4e472384a89e6d48116044905475c50e6 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Tue, 10 Mar 2026 18:21:32 -0700 Subject: [PATCH] fix(notes): link recent note tags --- web/src/app/(app)/dashboard/page.tsx | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/web/src/app/(app)/dashboard/page.tsx b/web/src/app/(app)/dashboard/page.tsx index e98cb80..0622711 100644 --- a/web/src/app/(app)/dashboard/page.tsx +++ b/web/src/app/(app)/dashboard/page.tsx @@ -189,23 +189,24 @@ export default function DashboardPage() { {error ?
{error}
: null}
{recentNotes.map((note) => ( - +
- {note.title} + + {note.title} + {note.updatedBy}
-
{note.excerpt}
+ + {note.excerpt} +
{note.tags.map((tag) => ( - #{tag} + + #{tag} + ))}
- +
))}