Compare commits

...

1 Commits

Author SHA1 Message Date
pablodanswer
0a2a37e00a k 2024-11-23 10:52:51 -08:00
2 changed files with 0 additions and 3 deletions

View File

@@ -414,7 +414,6 @@ export function AssistantEditor({
}
await refreshAssistants();
console.log("redirectType", redirectType);
router.push(
redirectType === SuccessfulPersonaUpdateRedirectType.ADMIN
? `/admin/assistants?u=${Date.now()}`

View File

@@ -98,10 +98,8 @@ 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);
}