Skip to content

Commit

Permalink
Fix merge mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed Oct 31, 2024
1 parent 59a2b47 commit daa595e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions webapp/src/components/tutorial/TutorialStepCounter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export function TutorialStepCounter(props: TutorialStepCounterProps) {

const lastStep = currentStep == totalSteps - 1;
const stepButtonLabelText = (step: number) => lf("Go to step {0} of {1}", step + 1, totalSteps);
const backButtonLabel = lf("Go to the previous step of the tutorial.");
const nextButtonLabel = lf("Go to the next step of the tutorial.");
const showNextButton = !lastStep || !props.hideDone;

Expand Down

0 comments on commit daa595e

Please sign in to comment.