import ApiKeyListContainer from "@calcom/features/ee/api-keys/components/ApiKeyListContainer"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { trpc } from "@calcom/trpc/react"; 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 && ( )} ); }