Skip to content

Commit 7b62c2d

Browse files
committed
fix: wrong step numbers
1 parent 621b82a commit 7b62c2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/pages/apps/installation/[[...step]].tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ const OnboardingPage = ({
119119
[AppOnboardingSteps.EVENT_TYPES_STEP]: {
120120
getTitle: () => `${t("select_event_types_header")}`,
121121
getDescription: (appName) => `${t("select_event_types_description", { appName })}`,
122-
stepNumber: installableOnTeams ? 1 : 2,
122+
stepNumber: installableOnTeams ? 2 : 1,
123123
},
124124
[AppOnboardingSteps.CONFIGURE_STEP]: {
125125
getTitle: (appName) => `${t("configure_app_header", { appName })}`,
126126
getDescription: () => `${t("configure_app_description")}`,
127-
stepNumber: installableOnTeams ? 2 : 3,
127+
stepNumber: installableOnTeams ? 3 : 2,
128128
},
129129
} as const;
130130
const [configureStep, setConfigureStep] = useState(false);

0 commit comments

Comments
 (0)