Skip to content

Commit

Permalink
Fix to incorrect "Help them get to" number
Browse files Browse the repository at this point in the history
  • Loading branch information
DaleMcGrew committed Jul 27, 2024
1 parent efddf68 commit e65d561
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class CampaignSupportThermometer extends React.Component {
} = campaignX;
let supportersCountNextGoalWithFloor = supportersCountNextGoal || CampaignStore.getCampaignXSupportersCountNextGoalDefault();
if (supportersCountNextGoalWithFloor <= supportersCount) {
supportersCountNextGoalWithFloor += 20;
supportersCountNextGoalWithFloor = Math.round((supportersCount + 50) / 50) * 50;
}
if (campaignXWeVoteIdFromDict && politicianWeVoteId) {
const {
Expand Down

0 comments on commit e65d561

Please sign in to comment.