Skip to content

Commit

Permalink
Merge branch 'handle-missing-spend-amount' into release-v2.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tombeynon committed Jun 18, 2024
2 parents 40f529b + 1453c19 commit efbd676
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/ProposalMessages.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ function ProposalMessages(props) {
return {
...data,
amount: () => {
if(!data.amount) console.log(data)
return data.amount?.map((coin, index) => {
return <Coins key={index} coins={coin} asset={network.assetForDenom(coin.denom)} fullPrecision={true} />
})
Expand Down

0 comments on commit efbd676

Please sign in to comment.