Skip to content

Commit

Permalink
Merge pull request #1493 from decentdao/bugfix-bignumber-tempaltes
Browse files Browse the repository at this point in the history
Fix BigNumber Typo in templates
  • Loading branch information
adamgall authored Mar 26, 2024
2 parents 54a9e51 + 6af1cef commit 28ff8be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function CreateProposalTemplatePage() {
...tx,
ethValue: {
value: tx.ethValue.value,
bigNumerValue: BigNumber.from(tx.ethValue.value || 0),
bigNumberValue: BigNumber.from(tx.ethValue.value || 0),
},
})),
};
Expand Down

0 comments on commit 28ff8be

Please sign in to comment.