"use client"; import { useI18n } from "@/hooks/useI18n"; export function ProjectTrustDialog({ cwd, busy, error, onCancel, onConfirm, }: { cwd: string; busy: boolean; error: string | null; onCancel: () => void; onConfirm: () => void; }) { const { t } = useI18n(); return (
{cwd}
{error && (