From 44523d4ddfd0f774478fad9911be8bbec4624d19 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 3 Oct 2024 05:11:00 +0530 Subject: [PATCH] feat: copied to clipboard notify --- src/components/organisms/ApiKey.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/organisms/ApiKey.tsx b/src/components/organisms/ApiKey.tsx index 7e729571..a734c307 100644 --- a/src/components/organisms/ApiKey.tsx +++ b/src/components/organisms/ApiKey.tsx @@ -81,7 +81,7 @@ const ApiKeyManager = () => { navigator.clipboard.writeText(apiKey); setCopySuccess(true); setTimeout(() => setCopySuccess(false), 2000); - notify('info', 'API Key copied to clipboard'); + notify('info', 'Copied to clipboard'); } };