diff --git a/src/components/organisms/ApiKey.tsx b/src/components/organisms/ApiKey.tsx index eba295db..179c12cb 100644 --- a/src/components/organisms/ApiKey.tsx +++ b/src/components/organisms/ApiKey.tsx @@ -55,7 +55,7 @@ const ApiKeyManager = () => { try { const { data } = await axios.post('http://localhost:8080/auth/generate-api-key'); setApiKey(data.api_key); - notify('info', `Generated API Key: ${data.api_key}`); + notify('success', `Generated API Key successfully`); } catch (error) { console.error('Error generating API key', error); } finally {