From 834e87c413246ec64d176827826e330c31ad4ed1 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 17:01:35 +0530 Subject: [PATCH] feat: api key copy 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 675edb72..0b0b4083 100644 --- a/src/components/organisms/ApiKey.tsx +++ b/src/components/organisms/ApiKey.tsx @@ -88,7 +88,7 @@ const ApiKeyManager = () => { navigator.clipboard.writeText(apiKey); setCopySuccess(true); setTimeout(() => setCopySuccess(false), 2000); - notify('info', 'Copied to clipboard'); + notify('info', 'Copied API Key successfully'); } };