From 22ce3727d1cbddcb4c0ec5795fcdb6b23186905f Mon Sep 17 00:00:00 2001 From: Ayush Date: Mon, 2 Feb 2026 21:58:25 +0530 Subject: [PATCH] fix(web): update clipboard copy feedback message for clarity --- web/pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/index.tsx b/web/pages/index.tsx index 8525651..19b2d94 100644 --- a/web/pages/index.tsx +++ b/web/pages/index.tsx @@ -28,7 +28,7 @@ export default function Landing() { try { navigator.clipboard.writeText('nexus run examples/collections/demo.yaml') // friendly small feedback - alert('Copied! You can paste and run that in your terminal.') + alert('Copied to clipboard!') } catch { alert('Could not copy. You can select and copy manually.') }