diff --git a/src/components/api/ApiKey.tsx b/src/components/api/ApiKey.tsx
index 9feb9551..2da3502f 100644
--- a/src/components/api/ApiKey.tsx
+++ b/src/components/api/ApiKey.tsx
@@ -107,73 +107,72 @@ const ApiKeyManager = () => {
}
return (
-
-
- Start by creating an API key below. Then,
-
- test your API
-
- or read the
- API documentation
- for setup instructions.
-
-
- {t('apikey.title')}
-
- {apiKey ? (
-
-
-
-
- {t('apikey.table.name')}
- {t('apikey.table.key')}
- {t('apikey.table.actions')}
-
-
-
-
- {apiKeyName}
-
-
- {showKey ? `${apiKey?.substring(0, 10)}...` : '**********'}
-
-
-
-
-
-
-
-
-
- setShowKey(!showKey)}>
- {showKey ? : }
-
-
-
-
-
-
-
-
-
-
-
-
- ) : (
- <>
- {t('apikey.no_key_message')}
-
- >
- )}
-
- );
-};
-
+
+
+ Start by creating an API key below. Then,
+
+ test your API
+
+ or read the
+ API documentation
+ for setup instructions.
+
+
+ {t('apikey.title')}
+
+ {apiKey ? (
+
+
+
+
+ {t('apikey.table.name')}
+ {t('apikey.table.key')}
+ {t('apikey.table.actions')}
+
+
+
+
+ {apiKeyName}
+
+
+ {showKey ? `${apiKey?.substring(0, 10)}...` : '**********'}
+
+
+
+
+
+
+
+
+
+ setShowKey(!showKey)}>
+ {showKey ? : }
+
+
+
+
+
+
+
+
+
+
+
+
+ ) : (
+ <>
+ {t('apikey.no_key_message')}
+
+ >
+ )}
+
+);
+}
export default ApiKeyManager;
\ No newline at end of file