We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking anything currently that I think needs some resolution before I can ship React 19.
useWatch
Basically, I need something relatively not too buggy before I move over (like a beta or rc).
beta
rc
Just whatever comments I have regarding the tracking process here.
next
-rc.4
alpha
form.watch
const form_checkoutDate = React.useMemo( () => form.watch("checkoutDate"), // eslint-disable-next-line react-compiler/react-compiler // eslint-disable-next-line react-hooks/exhaustive-deps [form.watch("checkoutDate")] );
useMemo
The text was updated successfully, but these errors were encountered:
react-hook-form
react-compiler
SeanCassiere
No branches or pull requests
Tracking anything currently that I think needs some resolution before I can ship React 19.
Tracking matrix
Radix-UIBreakingradix-ui/primitives#2769radix-ui/primitives#2933radix-ui/primitives#2934React Hook FormInstallation peer-dep warningreact-hook-form/react-hook-form#11932react-hook-form/react-hook-form#11935React Hook FormBreakingreact-hook-form/react-hook-form#11910useWatch
Basically, I need something relatively not too buggy before I move over (like a
beta
orrc
).Comments
Just whatever comments I have regarding the tracking process here.
✅ radix-ui
React 19 support is being tracked in the open PR.The branch has been merged in and released as a 'release candidate' under thenext
tag (-rc.4
).🚨 recharts
alpha
.🚨 cmdk
✅ react-hook-form
Theform.watch
doesn't work when the react-compiler is turned on, unless you memorize the watcher with an eslint ignore.useWatch
hook to not have to trick the react-compiler usinguseMemo
.The text was updated successfully, but these errors were encountered: