Skip to content

Commit 32dadb1

Browse files
authored
Fix typing for new query data
1 parent 48a3f80 commit 32dadb1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

apps/web/components/PoolGovernance.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export type PoolGovernanceProps = {
4040
memberTokensInCommunity: bigint;
4141
isMemberCommunity: boolean;
4242
memberActivatedStrategy: boolean;
43-
membersStrategyData: any;
43+
membersStrategyData: MemberStrategyData[];
4444
};
4545

4646
export const PoolGovernance: React.FC<PoolGovernanceProps> = ({

apps/web/components/Proposals.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ export type MemberStrategyData = {
6969
isRegistered: boolean;
7070
memberAddress: string;
7171
};
72+
stakes: {
73+
amount
74+
proposal {
75+
proposalStatus
76+
}
77+
}
7278
};
7379
totalStakedPoints: string;
7480
};

0 commit comments

Comments
 (0)