Skip to content

Commit

Permalink
Add Blank Vote button back in for IRV races
Browse files Browse the repository at this point in the history
  • Loading branch information
charliecarlton committed Jul 9, 2024
1 parent e20419b commit 054893f
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions client/src/component/County/Audit/Wizard/BallotAuditStage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,14 +234,12 @@ const BallotContestMarkForm = (props: MarkFormProps) => {
<span className='choice-name no-choice'>No audit board consensus</span></Checkbox>
</div>

{description === 'PLURALITY' ? (
<div className='contest-choice-selection'>
<Checkbox
checked={!!contestMarks.noMark}
onChange={updateNoMark}>
<span className='choice-name no-choice'>Blank vote - no mark</span></Checkbox>
</div>
) : null}
<div className='contest-choice-selection'>
<Checkbox
checked={!!contestMarks.noMark}
onChange={updateNoMark}>
<span className='choice-name no-choice'>Blank vote - no mark</span></Checkbox>
</div>
</div>

<ContestComments comments={contestMarks.comments} onChange={updateComments} />
Expand Down

0 comments on commit 054893f

Please sign in to comment.