import { Label } from "@/components/ui/label"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { useSettingsStore } from "@/store/SettingsStore"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { envCredential } from "@/util/env"; import { HiddenCopyableInput } from "@/components/ui/hidden-copyable-input"; function Settings() { const { environment, organization, setEnvironment, setOrganization } = useSettingsStore(); const apiKey = envCredential; return (