Skip to content

Commit

Permalink
chore(ui): remove unnecessary filters
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Sep 11, 2023
1 parent de5b1db commit cb534ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/components/CreatorsListDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const fetchCreators = async (params: any) => {
})
);
return agentProfiles.filter(Boolean) as AgentProfile[];
return agentProfiles;
};
const { data, error, fetchNextPage, hasNextPage, isInitialLoading, refetch } =
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/FollowersListDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const fetchFollowers = async (params: any) => {
})
);
return agentProfiles.filter(Boolean) as AgentProfile[];
return agentProfiles;
};
const { data, error, fetchNextPage, hasNextPage, isInitialLoading, refetch } =
Expand Down

0 comments on commit cb534ad

Please sign in to comment.