feat: api key copy notify

This commit is contained in:
karishmas6
2024-11-29 17:01:35 +05:30
parent 5c1666cd24
commit 834e87c413

View File

@@ -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');
}
};