diff --git a/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.test.tsx b/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.test.tsx index 89f04169e7..4d6f2c901c 100644 --- a/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.test.tsx +++ b/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.test.tsx @@ -177,6 +177,9 @@ test('entering initial ballot count and contest tallies', async () => { await screen.findByText(`${contestNumber} of ${contests.length}`); screen.getByRole('heading', { name: contest.title }); screen.getByText(district.name); + if (contest.type === 'candidate') { + screen.getByText(`Vote for ${contest.seats}`); + } screen.getByText('No tallies entered'); const saveButtonLabel = diff --git a/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.tsx b/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.tsx index 1e4230a320..efbf8deffd 100644 --- a/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.tsx +++ b/apps/admin/frontend/src/screens/tally/manual_tallies_form_screen.tsx @@ -742,8 +742,13 @@ function ContestForm({ - {getContestDistrictName(election, contest)} -

{contest.title}

+
+ {getContestDistrictName(election, contest)} +

{contest.title}

+ {contest.type === 'candidate' && ( +
Vote for {contest.seats}
+ )} +