import { useTranslation } from 'react-i18next'; import { Button, Form, Input, InputNumber, Select, Space, Switch } from 'antd'; import { ReloadOutlined } from '@ant-design/icons'; import { UTLS_FINGERPRINT } from '@/schemas/primitives'; interface RealityFormProps { saving: boolean; randomizeRealityTarget: () => void; randomizeShortIds: () => void; genRealityKeypair: () => void; clearRealityKeypair: () => void; genMldsa65: () => void; clearMldsa65: () => void; } export default function RealityForm({ saving, randomizeRealityTarget, randomizeShortIds, genRealityKeypair, clearRealityKeypair, genMldsa65, clearMldsa65, }: RealityFormProps) { const { t } = useTranslation(); return ( <>