Skip to content

Commit

Permalink
fix: remove old param height from query to getMembersJSON
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelVallenet committed Dec 23, 2024
1 parent 63a501c commit 801ff8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hooks/dao/useDAOMembers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const useDAOMembers = (daoId: string | undefined) => {
const res: GnoDAOMember[] = extractGnoJSONString(
await provider.evaluateExpression(
daoAddress,
`getMembersJSON("", "", 0, 0)`,
`getMembersJSON("", "", 0)`,
),
);
return res.map((member) => ({
Expand Down

0 comments on commit 801ff8b

Please sign in to comment.