From f8835df636f2efed4b4fa29314cb2f3ba31b1420 Mon Sep 17 00:00:00 2001 From: phact Date: Thu, 18 Dec 2025 17:12:34 -0500 Subject: [PATCH] enable frontend api key gen for no auth mode --- frontend/app/settings/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) && (