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
24 changes: 12 additions & 12 deletions llama_stack/ui/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 llama_stack/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"react": "^19.0.0",
Copy link

Copilot AI Jan 14, 2026

Choose a reason for hiding this comment

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

The package.json file is missing the corresponding update to the react package. The package-lock.json shows that react has been upgraded to version 19.2.3 (which is required by react-dom 19.2.3's peer dependency), but the package.json still specifies react: ^19.0.0. Both packages should be upgraded together to maintain consistency between package.json and package-lock.json.

Update the react version in package.json to match the version in package-lock.json.

Suggested change
"react": "^19.0.0",
"react": "^19.2.3",

Copilot uses AI. Check for mistakes.
"react-dom": "^19.0.0",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.3.0"
},
"devDependencies": {
Expand Down