We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 621b82a commit 7b62c2dCopy full SHA for 7b62c2d
apps/web/pages/apps/installation/[[...step]].tsx
@@ -119,12 +119,12 @@ const OnboardingPage = ({
119
[AppOnboardingSteps.EVENT_TYPES_STEP]: {
120
getTitle: () => `${t("select_event_types_header")}`,
121
getDescription: (appName) => `${t("select_event_types_description", { appName })}`,
122
- stepNumber: installableOnTeams ? 1 : 2,
+ stepNumber: installableOnTeams ? 2 : 1,
123
},
124
[AppOnboardingSteps.CONFIGURE_STEP]: {
125
getTitle: (appName) => `${t("configure_app_header", { appName })}`,
126
getDescription: () => `${t("configure_app_description")}`,
127
- stepNumber: installableOnTeams ? 2 : 3,
+ stepNumber: installableOnTeams ? 3 : 2,
128
129
} as const;
130
const [configureStep, setConfigureStep] = useState(false);
0 commit comments