"use client"; import { OrgPicker } from "@app/components/OrgPicker"; import { Button } from "@app/components/ui/button"; import { ListUserOrgsResponse } from "@server/routers/org"; import { ChevronDown } from "lucide-react"; import { useTranslations } from "next-intl"; type LauncherOrgSelectorProps = { orgId?: string; orgs?: ListUserOrgsResponse["orgs"]; }; export function LauncherOrgSelector({ orgId, orgs }: LauncherOrgSelectorProps) { const t = useTranslations(); const selectedOrg = orgs?.find((org) => org.orgId === orgId); return ( ); }