Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"clsx": "^2.1.1",
"docusaurus-plugin-sass": "^0.2.6",
"prism-react-renderer": "^2.4.1",
"react": "^18.0.0",
"react": "^19.2.4",
"react-dom": "^18.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

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

CRITICAL: Version mismatch between React and React DOM

React is being updated to ^19.2.4 (line 30) but react-dom is still at ^18.0.0. React and React DOM must have matching major versions to work correctly. This will cause runtime errors.

Recommendation: Update react-dom to ^19.2.0 or higher to match the React version.

"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
Expand All @@ -40,7 +40,7 @@
"@docusaurus/types": "3.9.2",
"@eslint/js": "^9.39",
"@mdx-js/typescript-plugin": "^0.1.3",
"@types/react": "^18.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^18.3.0",
Copy link
Contributor

Choose a reason for hiding this comment

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

CRITICAL: Type definition version mismatch

@types/react-dom is still at ^18.3.0 while @types/react was updated to ^19.2.14. These should be aligned to avoid type compatibility issues.

Suggested change
"@types/react-dom": "^18.3.0",
"@types/react-dom": "^19.2.14",

"eslint": "^9.39",
"eslint-config-prettier": "^10.1.8",
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
"pngjs": "^7.0.0",
"prop-types": "^15.8.1",
"qs": "^6.15.0",
"react": "^19.2.0",
"react": "^19.2.4",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.0",
Expand Down
2 changes: 1 addition & 1 deletion tsunami/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"clsx": "^2.1.1",
"debug": "^4.4.3",
"jotai": "^2.13.1",
"react": "^19.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"recharts": "^3.1.2",
Expand Down