Moriarty47
Moriarty47
Same here, and the show details section. 
I'm run into this issue too.  ```json { "dependencies": { // .... "@nextui-org/react": "2.2.10", "framer-motion": "11.0.24", "next": "13.5.1", "postcss": "8.4.30", "react": "18.2.0", "react-dom": "18.2.0" } } ```  ```json...
Rewrite it in this way, it worked. Thanks for your help , @wingkwong . ```tsx const schema = { username: z .string() .min(3, 'Please input email') .max(30, 'Please input correct...
BTW, for the original validation logic, just simply add an attribute `noValidate` ([specs here](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-novalidate)) to the form tag. It still works.
Ok. I think it should look something like [this](https://stackblitz.com/edit/stackblitz-starters-gbk6t5?file=app%2F%40issue%2Fpage.tsx),