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 }, })}