From 63aae60af47717bf256e5d830c0e749a17238451 Mon Sep 17 00:00:00 2001 From: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Date: Sat, 10 Sep 2022 23:22:35 +0530 Subject: [PATCH] fix: add checked tranform for switch (#4357) --- apps/web/components/booking/TimeOptions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/components/booking/TimeOptions.tsx b/apps/web/components/booking/TimeOptions.tsx index c9c1b7450f777..57ca5cdd5e0a5 100644 --- a/apps/web/components/booking/TimeOptions.tsx +++ b/apps/web/components/booking/TimeOptions.tsx @@ -1,8 +1,8 @@ import { FC, useEffect, useState } from "react"; import { useLocale } from "@calcom/lib/hooks/useLocale"; -import Switch from "@calcom/ui/Switch"; import TimezoneSelect, { ITimezoneOption } from "@calcom/ui/form/TimezoneSelect"; +import { Switch } from "@calcom/ui/v2"; import { is24h, timeZone } from "../../lib/clock";