Skip to content

Commit

Permalink
dip missing field
Browse files Browse the repository at this point in the history
  • Loading branch information
lassejaco committed Sep 24, 2024
1 parent 4a5d254 commit 8798512
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const Proposals = (props: ProposalsProps) => {
link: dip.github,
}
})
.filter(dip => dip.status.toLowerCase() === 'accepted')
.filter(dip => dip.status && dip.status.toLowerCase() === 'accepted')
}, [props.dips])

const [filteredDips, filterState] = useFilter({
Expand Down

0 comments on commit 8798512

Please sign in to comment.