Skip to content

Commit 1c14efb

Browse files
committed
Fix onboarding dialog last step label
1 parent 268f615 commit 1c14efb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/dashboard/OnboardingDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function OnboardingDialog() {
7777

7878
const isPastCurrentStep = (index: number) => index <= currentStep;
7979

80-
const isDone = currentStep >= ONBOARDING_STEPS.length;
80+
const isDone = currentStep >= ONBOARDING_STEPS.length - 1;
8181
const currentContent = ONBOARDING_STEPS[currentStep];
8282

8383
return (

0 commit comments

Comments
 (0)