Skip to content

Commit 00aad5b

Browse files
authored
Merge pull request #12 from icon-project/develop_neutron-approval-fix
Update Neutron Approval parameters
2 parents 925875d + e2666d8 commit 00aad5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/Cosmos/CosmosApproveProposalslPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const CosmosApproveProposalslPage = () => {
7676
const voteValue = 'yes';
7777
const txMsg = {
7878
vote: {
79-
proposal_id: proposalId,
79+
proposal_id: String(proposalId),
8080
vote: voteValue,
8181
},
8282
};

src/pages/Cosmos/CosmosProposalDetails.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ const CosmosProposalDetails = () => {
189189
const voteValue = 'yes';
190190
const txMsg = {
191191
vote: {
192-
proposal_id: proposalId,
192+
proposal_id: String(proposalId),
193193
vote: voteValue,
194194
},
195195
};

0 commit comments

Comments
 (0)