Skip to content

Commit

Permalink
[frontend] deepscan (#6703)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archidoit committed Apr 17, 2024
1 parent 780eee3 commit c968837
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ interface GroupEditionUsersProps {
const GroupEditionUsers: FunctionComponent<GroupEditionUsersProps> = ({ group, queryRef, paginationOptionsForUpdater }) => {
const classes = useStyles();
const groupId = group.id;
const groupUsers = group?.members?.edges?.map((n) => ({ id: n.node.id })) ?? [];
const groupUsers = group.members?.edges?.map((n) => ({ id: n.node.id })) ?? [];
const usersData = usePreloadedQuery<UsersLinesSearchQuery>(usersLinesSearchQuery, queryRef);
const users = usersData.users?.edges.map((n) => n.node) ?? [];

Expand Down

0 comments on commit c968837

Please sign in to comment.