From c810bf10ae281ac918b4c478c003b48cf4a9b07e Mon Sep 17 00:00:00 2001 From: MVarshini Date: Wed, 7 Jun 2023 19:53:32 +0530 Subject: [PATCH] Build fail fix (#3455) Workaround for React package breakage 'startTransition' is not exported from 'react' Lock React package version to ignore the broken update. --- dashboard/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/package.json b/dashboard/package.json index 197295f724..c3a5fefab4 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -30,8 +30,8 @@ "react-bootstrap": "^2.1.2", "react-dom": "^17.0.2", "react-redux": "^7.2.6", - "react-router": "^6.3.0", - "react-router-dom": "^6.3.0", + "react-router": "6.3.0", + "react-router-dom": "6.3.0", "react-scripts": "^5.0.0", "redux": "^4.1.2", "redux-logger": "^3.0.6",