From e5b8cc691290d9eddeb9ff1c7c8eb3a36c571da7 Mon Sep 17 00:00:00 2001 From: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Date: Mon, 23 Jun 2025 23:53:31 +0530 Subject: [PATCH] fix: booking title translation issue (#21943) * fix: add log to check organizer * update * Update CalendarService.ts --- apps/web/modules/bookings/views/bookings-single-view.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/modules/bookings/views/bookings-single-view.tsx b/apps/web/modules/bookings/views/bookings-single-view.tsx index 34ab1de954..f5372f603b 100644 --- a/apps/web/modules/bookings/views/bookings-single-view.tsx +++ b/apps/web/modules/bookings/views/bookings-single-view.tsx @@ -315,17 +315,20 @@ export default function Success(props: PageProps) { return t(`${titlePrefix}emailed_host_and_attendee${titleSuffix}`, { host, attendee, + interpolation: { escapeValue: false }, }); } if (isAttendee) { return t(`${titlePrefix}emailed_host_and_attendee${titleSuffix}`, { host, attendee, + interpolation: { escapeValue: false }, }); } return t(`${titlePrefix}emailed_host_and_attendee${titleSuffix}`, { host, attendee, + interpolation: { escapeValue: false }, }); } return t(`emailed_host_and_attendee${titleSuffix}`);