import { useLocale } from "@calcom/lib/hooks/useLocale"; import ApiKeyListContainer from "@ee/components/apiKeys/ApiKeyListContainer"; import { trpc } from "@lib/trpc"; import SettingsShell from "@components/SettingsShell"; import WebhookListContainer from "@components/webhook/WebhookListContainer"; export default function Settings() { const { t } = useLocale(); const { data: routingForms } = trpc.useQuery([ "viewer.appById", { appId: "routing_forms", }, ]); return ( {routingForms && ( )} ); }