fix: wrong translation value (#17923)

* feat: ability to remove attendees from booking page

* update

* fix
This commit is contained in:
Anik Dhabal Babu
2025-04-28 13:16:18 +00:00
committed by GitHub
parent 26051833cf
commit bd1142ea7a
2 changed files with 7 additions and 3 deletions
@@ -113,16 +113,19 @@ const OnboardingPage = ({
const STEPS_MAP: StepObj = {
[AppOnboardingSteps.ACCOUNTS_STEP]: {
getTitle: () => `${t("select_account_header")}`,
getDescription: (appName) => `${t("select_account_description", { appName })}`,
getDescription: (appName) =>
`${t("select_account_description", { appName, interpolation: { escapeValue: false } })}`,
stepNumber: 1,
},
[AppOnboardingSteps.EVENT_TYPES_STEP]: {
getTitle: () => `${t("select_event_types_header")}`,
getDescription: (appName) => `${t("select_event_types_description", { appName })}`,
getDescription: (appName) =>
`${t("select_event_types_description", { appName, interpolation: { escapeValue: false } })}`,
stepNumber: installableOnTeams ? 2 : 1,
},
[AppOnboardingSteps.CONFIGURE_STEP]: {
getTitle: (appName) => `${t("configure_app_header", { appName })}`,
getTitle: (appName) =>
`${t("configure_app_header", { appName, interpolation: { escapeValue: false } })}`,
getDescription: () => `${t("configure_app_description")}`,
stepNumber: installableOnTeams ? 3 : 2,
},
+1
View File
@@ -146,6 +146,7 @@ function UsernameField({
<p>
{t("premium_username", {
price: getPremiumPlanPriceValue(),
interpolation: { escapeValue: false },
})}
</p>
</div>