Skip to content

Commit

Permalink
fixing changes being undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaghettiOverload committed Feb 16, 2023
1 parent c3f89b8 commit ae4c239
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const ProposalInformation = () => {
<Typography variant='subtitle2' color={'text.secondary'} sx={{ gridColumn: 4, gridRow: 2 }} >
Value
</Typography>
{overview.content.changes.map((item: Change, idx: number) => {
{overview.content.changes?.map((item: Change, idx: number) => {
return (
<Fragment>
<Typography variant='subtitle2' sx={{ gridColumn: 2, gridRow: idx + 3 }} >
Expand Down

0 comments on commit ae4c239

Please sign in to comment.