react-hook-form / devtools

📋 DevTools to help debug forms.
https://react-hook-form.com/dev-tools
MIT License
643 stars 47 forks source link

fix: form id ssr error #160

Closed jsun969 closed 2 years ago

jsun969 commented 2 years ago

fix #159

@bluebill1049 Can you create a bata release for this? I didn't try ssr in example

bluebill1049 commented 2 years ago

thank you @jsun969 i will send you a beta version.

bluebill1049 commented 2 years ago

4.2.2-beta.0

bluebill1049 commented 2 years ago

actually, I don't think this will work... it will still get mismatched, if this doesn't work try the below

const id = useRef()

useEffect(() => {
  id.current = uuid()
}, [])
jsun969 commented 2 years ago

yeye. Make sense!