"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 CopyToClipboard from "@app/components/CopyToClipboard"; 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")} {t("subnet")} {org.org.subnet || t("none")} {t("utilitySubnet")} {org.org.utilitySubnet || t("none")} ); }