소스 검색

fix getActiveProposals

Joystream Stats 2 년 전
부모
커밋
5a7c37b8d2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      api.ts

+ 1 - 1
api.ts

@@ -394,7 +394,7 @@ export const getActiveProposals = async (
 ): Promise<ProposalId[]> =>
   api.query.proposalsEngine.activeProposalIds
     .keys()
-    .then((ids) => ids.map(([key]) => key as unknown as ProposalId));
+    .then((keys) => keys.map(({ args: [id] }) => id as ProposalId));
 
 export const getProposalCount = async (
   api: ApiPromise,