Fix api keys issue (#706)

This commit is contained in:
Chris 2025-12-12 18:26:46 +02:00 committed by GitHub
parent bd7582a59b
commit af9b0dde36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -213,7 +213,7 @@ const ProfileSettings: React.FC<ProfileSettingsProps> = ({
}, [showErrorToast]);
useEffect(() => {
if (activeTab === 'apiKeys' && !apiKeysLoaded) {
if (activeTab === 'api-keys' && !apiKeysLoaded) {
loadApiKeys();
}
}, [activeTab, apiKeysLoaded, loadApiKeys]);