From c3a64824afc0aacd6afaddb58ba997c1f3b05abb Mon Sep 17 00:00:00 2001 From: Sander Cox Date: Thu, 30 Oct 2025 22:33:32 +0100 Subject: [PATCH] chore: fix react dependencies to support old verions There was no need to make this a react 19 only project from what I can tell --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1ae0d51e..a50326ce 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "vitest": "^2.0.0" }, "peerDependencies": { - "react": "^19.0.0", - "react-dom": "^16.8.0 || || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }