import { useLocale } from "@calcom/lib/hooks/useLocale"; import { useFreshChat } from "./FreshChatProvider"; import { isFreshChatEnabled } from "./FreshChatScript"; interface FreshChatMenuItemProps { onHelpItemSelect: () => void; } export default function FreshChatMenuItem(props: FreshChatMenuItemProps) { const { onHelpItemSelect } = props; const { t } = useLocale(); const { setActive } = useFreshChat(); if (!isFreshChatEnabled) return null; return ( <> ); }