From 8235ae951050564ef3ccfac2dacb1e7fb5a67cbc Mon Sep 17 00:00:00 2001 From: "Sebastian \"Sebbie\" Silbermann" Date: Thu, 5 Dec 2024 20:20:05 +0100 Subject: [PATCH] Fix types install instructions in 19 upgrade guide --- src/content/blog/2024/04/25/react-19-upgrade-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/blog/2024/04/25/react-19-upgrade-guide.md b/src/content/blog/2024/04/25/react-19-upgrade-guide.md index 79af8d348..9b843a435 100644 --- a/src/content/blog/2024/04/25/react-19-upgrade-guide.md +++ b/src/content/blog/2024/04/25/react-19-upgrade-guide.md @@ -81,7 +81,7 @@ yarn add --exact react@^19.0.0 react-dom@^19.0.0 If you're using TypeScript, you also need to update the types. ```bash -npm install --save-exact @types/react@^19.0.0 react-dom@^19.0.0 +npm install --save-exact @types/react@^19.0.0 @types/react-dom@^19.0.0 ``` Or, if you're using Yarn: