Skip to content

Commit

Permalink
Merge pull request #2316 from zeitgeistpm/staging
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 26, 2024
2 parents 05b86ce + 3a05222 commit 65fe2d3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions components/court/JurorsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ const columns: TableColumn[] = [
const JurorsTable = () => {
const { data: participants } = useCourtParticipants();
const jurors = participants?.filter((p) => p.type === "Juror");
const { data: identities } = useIdentities(
participants?.map((j) => j.address),
);
const { data: identities } = useIdentities(jurors?.map((j) => j.address));

const tableData: TableData[] | undefined = jurors
?.filter((p) => p.type === "Juror")
Expand Down

0 comments on commit 65fe2d3

Please sign in to comment.