"use client"; import { Alert, AlertDescription } from "@/components/ui/alert"; import { useOrgContext } from "@app/hooks/useOrgContext"; import { InfoSection, InfoSectionContent, InfoSections, InfoSectionTitle } from "@app/components/InfoSection"; import { useTranslations } from "next-intl"; type OrgInfoCardProps = {}; export default function OrgInfoCard({}: OrgInfoCardProps) { const { org } = useOrgContext(); const t = useTranslations(); return ( {t("name")} {org.org.name} {t("orgId")} {org.org.orgId} {t("subnet")} {org.org.subnet || t("none")} ); }