From e931423eba3d2c55e13dc293855df77e0c2b04e8 Mon Sep 17 00:00:00 2001
From: 01zulfi <85733202+01zulfi@users.noreply.github.com>
Date: Thu, 2 Jul 2026 08:45:41 +0500
Subject: [PATCH] web: show success toast when copying note link in context
menu (#10027)
Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
---
apps/web/src/components/note/index.tsx | 2 ++
1 file changed, 2 insertions(+)
diff --git a/apps/web/src/components/note/index.tsx b/apps/web/src/components/note/index.tsx
index d960b1333..0736f9a1d 100644
--- a/apps/web/src/components/note/index.tsx
+++ b/apps/web/src/components/note/index.tsx
@@ -496,6 +496,7 @@ export const noteMenuItems: (
"text/html": `${note.title}`,
"text/markdown": `[${note.title}](${url})`
});
+ showToast("success", strings.linkCopied());
}
},
{
@@ -594,6 +595,7 @@ export const noteMenuItems: (
"text/html": `${note.title}`,
"text/markdown": `[${note.title}](${link})`
});
+ showToast("success", strings.linkCopied());
}
},
{