diff --git a/hub/components/Home/Feed/FeedItem/Proposal/index.tsx b/hub/components/Home/Feed/FeedItem/Proposal/index.tsx index 35c94faf70..5ef9b3c770 100644 --- a/hub/components/Home/Feed/FeedItem/Proposal/index.tsx +++ b/hub/components/Home/Feed/FeedItem/Proposal/index.tsx @@ -31,7 +31,9 @@ export function Proposal(props: Props) { const quorumRemainder = quorumReached ? new BigNumber(0) : voteBreakdown.threshold - ? voteBreakdown.threshold.minus(voteBreakdown.totalYesWeight) + ? voteBreakdown.threshold + .minus(voteBreakdown.totalYesWeight) + .decimalPlaces(0, BigNumber.ROUND_UP) : new BigNumber(0); const myVote = props.proposal.proposal.myVote;