From c7d58616b5943768e2e581751f4ede7a4f3292da Mon Sep 17 00:00:00 2001 From: pablodanswer Date: Fri, 22 Nov 2024 14:13:04 -0800 Subject: [PATCH] k --- web/src/components/context/AssistantsContext.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/components/context/AssistantsContext.tsx b/web/src/components/context/AssistantsContext.tsx index f811fecc7e9..2e40cb5bf44 100644 --- a/web/src/components/context/AssistantsContext.tsx +++ b/web/src/components/context/AssistantsContext.tsx @@ -98,8 +98,10 @@ export const AssistantsProvider: React.FC<{ } if (allResponse.ok) { + console.log("allResponse", allResponse); const allPersonas = await allResponse.json(); setAllAssistants(allPersonas); + console.log("allAssistants", allAssistants); } else { console.error("Error fetching personas:", allResponse); }