Skip to content

Commit 0d85f61

Browse files
committed
Set skip ERC-8004 registration as default
1 parent ee7876a commit 0d85f61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/CreateApp/ERC8004Form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type Props = {
1818
}
1919

2020
export const ERC8004Form: FC<Props> = ({ handleNext, handleBack, inputs, metadata, setAppDataForm }) => {
21-
const [skipERC8004, setSkipERC8004] = useState(false)
21+
const [skipERC8004, setSkipERC8004] = useState(true)
2222

2323
const form = useForm<ERC8004FormData>({
2424
resolver: skipERC8004 ? undefined : zodResolver(erc8004Schema),

0 commit comments

Comments
 (0)