Moriarty47

Results 5 comments of Moriarty47

Same here, and the show details section. ![image](https://github.com/prisma/studio/assets/21117495/39d72059-6e7c-4312-ace2-833e6284dd2f)

I'm run into this issue too. ![1](https://github.com/nextui-org/nextui/assets/21117495/2fca5f8f-41d0-461a-b27f-ff7c5a37c5a2) ```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" } } ``` ![2](https://github.com/nextui-org/nextui/assets/21117495/73ebbec4-68b9-46b6-8fc8-cb8ac565aa16) ```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),