"use client"; import { SettingsTab } from "./tabs/SettingsTab"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "~/components/ui/dialog"; interface SettingsModalProps { open: boolean; onOpenChange: (open: boolean) => void; experiment: { id: string; name: string; description: string | null; status: string; studyId: string; createdAt: Date; updatedAt: Date; study: { id: string; name: string; }; }; designStats?: { stepCount: number; actionCount: number; }; } export function SettingsModal({ open, onOpenChange, experiment, designStats, }: SettingsModalProps) { return ( Experiment Settings Configure experiment metadata and status ); }