"use client"; import { Controller } from "react-hook-form"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { RRResetInterval } from "@calcom/prisma/enums"; import { Select } from "@calcom/ui/components/form"; const RoundRobinResetInterval = () => { const { t } = useLocale(); const intervalOptions: { value: RRResetInterval; label: string; }[] = [ { value: RRResetInterval.MONTH, label: t("monthly"), }, { value: RRResetInterval.DAY, label: t("daily"), }, ]; return ( { return ( <>

{t("reset_interval_weighted_rr")}

{t("rr_reset_interval_description")}