Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"jest-environment-jsdom-global": "^4.0.0",
"prettier": "^3.3.3",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react": "^19.2.4",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

React/react-dom major version mismatch breaks tests

High Severity

react is bumped to ^19.2.4 but react-dom remains at ^18.0.0. React requires that react and react-dom have the exact same major version — mismatched versions cause a runtime error ("Incompatible React versions"). Additionally, @types/react, @types/react-dom, and @types/react-test-renderer all remain at ^18 and need to be bumped to ^19 as well. This will break the entire test suite and development builds.

Additional Locations (2)

Fix in Cursor Fix in Web

"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^6.0.1",
Expand Down
Loading