From 82a6110e5964d91db2e027cbf21124f89c123d84 Mon Sep 17 00:00:00 2001 From: Zack Tanner <1939140+ztanner@users.noreply.github.com> Date: Fri, 10 May 2024 12:24:57 -0700 Subject: [PATCH] update reproduction templates to use correct React (#65624) Our reproduction templates are pinned to `next@canary`. This updates to use the correct `react` & `react-dom` dependencies since `canary` is pointed to React 19. Fixes #65619 --- examples/reproduction-template-pages/package.json | 4 ++-- examples/reproduction-template/package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/reproduction-template-pages/package.json b/examples/reproduction-template-pages/package.json index e1033f6cfe4f6..cbb8033510f33 100644 --- a/examples/reproduction-template-pages/package.json +++ b/examples/reproduction-template-pages/package.json @@ -7,8 +7,8 @@ }, "dependencies": { "next": "canary", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "19.0.0-beta-4508873393-20240430", + "react-dom": "19.0.0-beta-4508873393-20240430" }, "devDependencies": { "@types/node": "20.4.5", diff --git a/examples/reproduction-template/package.json b/examples/reproduction-template/package.json index e1033f6cfe4f6..cbb8033510f33 100644 --- a/examples/reproduction-template/package.json +++ b/examples/reproduction-template/package.json @@ -7,8 +7,8 @@ }, "dependencies": { "next": "canary", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "19.0.0-beta-4508873393-20240430", + "react-dom": "19.0.0-beta-4508873393-20240430" }, "devDependencies": { "@types/node": "20.4.5",