diff --git a/frontend/app/settings/page.tsx b/frontend/app/settings/page.tsx index c7c707f6..d5e56ca9 100644 --- a/frontend/app/settings/page.tsx +++ b/frontend/app/settings/page.tsx @@ -146,7 +146,7 @@ function KnowledgeSourcesPage() { // Fetch API keys const { data: apiKeysData, isLoading: apiKeysLoading } = useGetApiKeysQuery({ - enabled: isAuthenticated, + enabled: isAuthenticated || isNoAuthMode, }); // API key mutations @@ -1392,7 +1392,7 @@ function KnowledgeSourcesPage() { {/* API Keys Section */} - {isAuthenticated && ( + {(isAuthenticated || isNoAuthMode) && (