Skip to content

Commit

Permalink
k
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonyx committed Dec 15, 2024
1 parent 4e819c3 commit d91f373
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions web/src/lib/assistants/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,9 @@ export function getUserCreatedAssistants(
user: User | null,
assistants: Persona[]
) {
const result = assistants.filter((assistant) =>
return assistants.filter((assistant) =>
checkUserOwnsAssistant(user, assistant)
);
console.log("Output - user created assistants:", result);
return result;
}

// Filter assistants based on connector status, image compatibility and visibility
Expand Down

0 comments on commit d91f373

Please sign in to comment.