From 85490fef4d4186bf0d9126e59f557f89892cd867 Mon Sep 17 00:00:00 2001 From: Mehul Date: Mon, 14 Aug 2023 23:41:34 +0530 Subject: [PATCH] fix: 150min duration time for scheduling not possibe (#10715) Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> --- apps/web/components/eventtype/EventSetupTab.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/web/components/eventtype/EventSetupTab.tsx b/apps/web/components/eventtype/EventSetupTab.tsx index 85f32a60bd..9607f69e0b 100644 --- a/apps/web/components/eventtype/EventSetupTab.tsx +++ b/apps/web/components/eventtype/EventSetupTab.tsx @@ -129,10 +129,12 @@ export const EventSetupTab = ( }; }); - const multipleDurationOptions = [5, 10, 15, 20, 25, 30, 45, 50, 60, 75, 80, 90, 120, 180].map((mins) => ({ - value: mins, - label: t("multiple_duration_mins", { count: mins }), - })); + const multipleDurationOptions = [5, 10, 15, 20, 25, 30, 45, 50, 60, 75, 80, 90, 120, 150, 180].map( + (mins) => ({ + value: mins, + label: t("multiple_duration_mins", { count: mins }), + }) + ); const [selectedMultipleDuration, setSelectedMultipleDuration] = useState< MultiValue<{