From 69edd845b9a654c6ac9ed68da19d5b42897e636e Mon Sep 17 00:00:00 2001 From: Jake Saterlay <41985955+JakeSaterlay@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:18:01 +0000 Subject: [PATCH] fixed typo in yarn add command (#7326) --- 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 9b843a435de..fd160e943b6 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 @@ -86,7 +86,7 @@ npm install --save-exact @types/react@^19.0.0 @types/react-dom@^19.0.0 Or, if you're using Yarn: ```bash -yarn add --exact @†ypes/react@^19.0.0 @†ypes/react-dom@^19.0.0 +yarn add --exact @types/react@^19.0.0 @types/react-dom@^19.0.0 ``` We're also including a codemod for the most common replacements. See [TypeScript changes](#typescript-changes) below.