From 86f3105586f91adc800fd91cd47fb55acc911dd7 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Thu, 24 Oct 2024 03:56:52 +0300 Subject: [PATCH] fix bug --- src/ExtStates/NotAuthenticated.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ExtStates/NotAuthenticated.tsx b/src/ExtStates/NotAuthenticated.tsx index 4ccdb65..7c31d21 100644 --- a/src/ExtStates/NotAuthenticated.tsx +++ b/src/ExtStates/NotAuthenticated.tsx @@ -342,8 +342,8 @@ export const NotAuthenticated = ({ (response) => { console.log("setApiKey", response); if (response) { - setApiKey(payload); - handleSetGlobalApikey(payload); + setApiKey(null); + handleSetGlobalApikey(null); } }