From a57249fbf905d45c7b15ff8ed138666ad0d00e88 Mon Sep 17 00:00:00 2001 From: Rohit Date: Mon, 24 Feb 2025 22:00:07 +0530 Subject: [PATCH] feat: rectify translation --- src/components/api/ApiKey.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/api/ApiKey.tsx b/src/components/api/ApiKey.tsx index 6e2923f9..f84f7a55 100644 --- a/src/components/api/ApiKey.tsx +++ b/src/components/api/ApiKey.tsx @@ -60,7 +60,7 @@ const ApiKeyManager = () => { const { data } = await axios.post(`${apiUrl}/auth/generate-api-key`); setApiKey(data.api_key); - notify('success', t('apikey.notifications.success.generate')); + notify('success', t('apikey.notifications.generate_success')); } catch (error: any) { notify('error', t('apikey.notifications.generate_error', { error: error.message })); } finally {