From a380087c9b9bbd30fbf162639418814c0a1a12b7 Mon Sep 17 00:00:00 2001 From: Hariom Balhara Date: Tue, 20 Jun 2023 14:09:46 +0530 Subject: [PATCH] reschedule_reason is used by Booking Form (#9656) --- apps/web/pages/booking/[uid].tsx | 2 +- apps/web/public/static/locales/en/common.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/pages/booking/[uid].tsx b/apps/web/pages/booking/[uid].tsx index c9a4e8d877..029bc47f6a 100644 --- a/apps/web/pages/booking/[uid].tsx +++ b/apps/web/pages/booking/[uid].tsx @@ -394,7 +394,7 @@ export default function Success(props: SuccessProps) { {(isCancelled || reschedule) && cancellationReason && ( <>
- {isCancelled ? t("reason") : t("reschedule_reason_success_page")} + {isCancelled ? t("reason") : t("reschedule_reason")}
{cancellationReason}
diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index 7d0dd7f580..be2dfab00c 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -1471,7 +1471,7 @@ "attendee_email_info": "The person booking's email", "kbar_search_placeholder": "Type a command or search...", "invalid_credential": "Oh no! Looks like permission expired or was revoked. Please reinstall again.", - "reschedule_reason_success_page": "Reschedule reason", + "reschedule_reason": "Reschedule reason", "choose_common_schedule_team_event": "Choose a common schedule", "choose_common_schedule_team_event_description": "Enable this if you want to use a common schedule between hosts. When disabled, each host will be booked based on their default schedule.", "reason": "Reason",