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