From 8d859601d0084fab24033e2fbf48f078f395725e Mon Sep 17 00:00:00 2001 From: rennerdo30 <9086097+rennerdo30@users.noreply.github.com> Date: Wed, 29 Jul 2026 15:09:01 +0900 Subject: [PATCH] fix(ui): sync react-dom to 19.2.8 to match react react was bumped to 19.2.8 while react-dom stayed at 19.2.7. Mismatched react/react-dom versions make React throw at runtime and fail the UI test suite, so both must move together. --- ui/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/package.json b/ui/package.json index cf49f7e..a3567ad 100644 --- a/ui/package.json +++ b/ui/package.json @@ -33,7 +33,7 @@ "next": "16.2.12", "next-intl": "^4.6.1", "react": "19.2.8", - "react-dom": "19.2.7", + "react-dom": "19.2.8", "react-hook-form": "^7.69.0", "recharts": "^3.6.0", "socket.io-client": "^4.8.3",