"use client"; import { useForm } from "@tanstack/react-form"; import { z } from "zod"; import { Textarea } from "@/components/ui/textarea"; interface ShellCommandFormProps { command: string; onCommandChange: (value: string) => void; disabled?: boolean; } export function ShellCommandForm({ command, onCommandChange, disabled, }: ShellCommandFormProps) { const form = useForm({ defaultValues: { command }, onSubmit: () => {}, }); return (