From 9f2670ca8e5d47a61cf1196a25b3930ed871a58b Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Tue, 10 Mar 2026 17:14:24 -0700 Subject: [PATCH] fix(notes): link dashboard note activity --- web/src/app/(app)/dashboard/page.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/web/src/app/(app)/dashboard/page.tsx b/web/src/app/(app)/dashboard/page.tsx index 56cfe91..526f9cc 100644 --- a/web/src/app/(app)/dashboard/page.tsx +++ b/web/src/app/(app)/dashboard/page.tsx @@ -1,5 +1,6 @@ "use client"; +import Link from "next/link"; import { useEffect, useState } from "react"; import { AppShell } from "@/components/AppShell"; import { listNoteSummaries, listWorkspaceSummaries } from "@/lib/notes-client"; @@ -143,7 +144,12 @@ export default function DashboardPage() { {error ?
{error}
: null}
{recentNotes.map((note) => ( -
+
{note.title} {note.updatedBy} @@ -154,7 +160,7 @@ export default function DashboardPage() { #{tag} ))}
-
+ ))}