-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
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
Compatibility with React 19 (and React 18) #1723
Comments
Marking issue as stale since there was no activity for 30 days |
This issue still persists. |
Marking issue as stale since there was no activity for 30 days |
Bumping this one. In the meantime, Next.js 15 was released with React 19 RC support. |
Marking issue as stale since there was no activity for 30 days |
Still valid. |
Marking issue as stale since there was no activity for 30 days |
The issue still persists. |
Marking issue as stale since there was no activity for 30 days |
Currently,
rich-text-react-renderer
does not always work with React 19 (and shows a deprecation message on React 18).In particular, the case that breaks for me is when I click "Hyperlink" in rich text editor toolbar:
The code responsible for this action's failure is in
ModalDialogLauncher.tsx
.It uses pre-React 18 method of attaching a root React node on HTML element in DOM. Migration to an updated React API is trivial and well-documented. I believe it should also be possible to provide both APIs at the same time with a runtime check.
Would it be possible to migrate this part to enable users on React 18 and React 19?
The text was updated successfully, but these errors were encountered: