import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Badge } from "@calcom/ui"; import { TroubleshooterListItemHeader } from "./TroubleshooterListItemContainer"; function ConnectedAppsItem() { return (
} suffixSlot={
Connected
} /> ); } export function ConnectedAppsContainer() { const { t } = useLocale(); return (

{t("other_apps")}

); }