From f8d56dce3aaaaa7b71ab86724920693bb956fa0c Mon Sep 17 00:00:00 2001 From: SwiftyOS Date: Fri, 6 Jun 2025 14:28:37 +0200 Subject: [PATCH] dont provide a null provider --- .../src/components/integrations/credentials-provider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx b/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx index 787c8d4440..3875397e9a 100644 --- a/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx +++ b/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx @@ -206,7 +206,7 @@ export default function CredentialsProvider({ useEffect(() => { if (!isLoggedIn) { - if (isLoggedIn == false) setProviders(null); + if (isLoggedIn == false) setProviders({}); return; }