From dd60d6bf09a45ba8ae855ccb018b797f8683f33e Mon Sep 17 00:00:00 2001 From: Naineel Soyantar <112230479+naineel1209@users.noreply.github.com> Date: Fri, 6 Sep 2024 13:48:06 +0530 Subject: [PATCH] fix: Api text typo in ApiKeyInput.tsx (#6916) (#6918) ## Issue Closes (#6916) There was an `Api` typo with API under Developer section while copying the API Key to clipboard in the status popup which is now corrected to `API`. --- .../src/modules/settings/developers/components/ApiKeyInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/settings/developers/components/ApiKeyInput.tsx b/packages/twenty-front/src/modules/settings/developers/components/ApiKeyInput.tsx index e4f3f7b43..298d24d0f 100644 --- a/packages/twenty-front/src/modules/settings/developers/components/ApiKeyInput.tsx +++ b/packages/twenty-front/src/modules/settings/developers/components/ApiKeyInput.tsx @@ -32,7 +32,7 @@ export const ApiKeyInput = ({ apiKey }: ApiKeyInputProps) => { Icon={IconCopy} title="Copy" onClick={() => { - enqueueSnackBar('Api Key copied to clipboard', { + enqueueSnackBar('API Key copied to clipboard', { variant: SnackBarVariant.Success, icon: , duration: 2000,