Skip to content

Commit

Permalink
Merge pull request #104 from eco-stake/handle-missing-spend-amount
Browse files Browse the repository at this point in the history
Handle missing community spend proposal amount
  • Loading branch information
tombeynon authored Jun 24, 2024
2 parents 427e06a + b3d9397 commit 5856464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ProposalMessages.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function ProposalMessages(props) {
return {
...data,
amount: () => {
return data.amount.map((coin, index) => {
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 5856464

Please sign in to comment.