feat: copied to clipboard notify

This commit is contained in:
karishmas6
2024-10-03 05:11:00 +05:30
parent cfd7d07846
commit 44523d4ddf

View File

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