From bd1142ea7a04bd5c4d149da8b1016d2972083e5c Mon Sep 17 00:00:00 2001 From: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Date: Mon, 28 Apr 2025 18:46:18 +0530 Subject: [PATCH] fix: wrong translation value (#17923) * feat: ability to remove attendees from booking page * update * fix --- .../modules/apps/installation/[[...step]]/step-view.tsx | 9 ++++++--- apps/web/modules/signup-view.tsx | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/web/modules/apps/installation/[[...step]]/step-view.tsx b/apps/web/modules/apps/installation/[[...step]]/step-view.tsx index 0e5cd1f933..73fa18c548 100644 --- a/apps/web/modules/apps/installation/[[...step]]/step-view.tsx +++ b/apps/web/modules/apps/installation/[[...step]]/step-view.tsx @@ -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, }, diff --git a/apps/web/modules/signup-view.tsx b/apps/web/modules/signup-view.tsx index 2f4e321ffe..b0fd210192 100644 --- a/apps/web/modules/signup-view.tsx +++ b/apps/web/modules/signup-view.tsx @@ -146,6 +146,7 @@ function UsernameField({
{t("premium_username", { price: getPremiumPlanPriceValue(), + interpolation: { escapeValue: false }, })}