Skip to content

Commit

Permalink
Fix onboarding dialog last step label
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieCubed committed Feb 22, 2024
1 parent 1bbbd32 commit b0a68c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/dashboard/OnboardingDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function OnboardingDialog() {

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

const isDone = currentStep >= ONBOARDING_STEPS.length;
const isDone = currentStep >= ONBOARDING_STEPS.length - 1;
const currentContent = ONBOARDING_STEPS[currentStep];

return (
Expand Down

0 comments on commit b0a68c2

Please sign in to comment.