Skip to content

Commit

Permalink
fix typo and remove second animation
Browse files Browse the repository at this point in the history
  • Loading branch information
kshen0 committed Oct 11, 2023
1 parent dca6a54 commit 1f6ad00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/mark-scan/frontend/src/app_root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ export function AppRoot({
stateMachineState === 'ejecting_to_rear' ||
stateMachineState === 'resetting_state_machine_after_success' ||
// Cardless voter auth is ended in the backend when the voting session ends but the frontend
// may have a stale value. Cardless voter auth + 'not_accepting_paper' state means the fronend
// may have a stale value. Cardless voter auth + 'not_accepting_paper' state means the frontend
// is stale, so we want to render the previous loading screen until the frontend auth status updates.
stateMachineState === 'not_accepting_paper'
) {
Expand Down
4 changes: 2 additions & 2 deletions apps/mark-scan/frontend/src/pages/casting_ballot_page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Main, Screen, Loading, InsertBallotImage } from '@votingworks/ui';
import { Main, Screen, InsertBallotImage, P } from '@votingworks/ui';

export function CastingBallotPage(): JSX.Element {
return (
<Screen white>
<Main centerChild padded>
<InsertBallotImage />
<Loading>Casting Ballot</Loading>
<P>Casting Ballot...</P>
</Main>
</Screen>
);
Expand Down

0 comments on commit 1f6ad00

Please sign in to comment.