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 78fca5e2065..84ef768cd33 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 @@ -85,12 +85,12 @@ If you're using TypeScript, you also need to update the types. Once React 19 is ```json { "dependencies": { - "@types/react": "npm:types-react@alpha", - "@types/react-dom": "npm:types-react-dom@alpha" + "@types/react": "npm:types-react@beta", + "@types/react-dom": "npm:types-react-dom@beta" }, "overrides": { - "@types/react": "npm:types-react@alpha", - "@types/react-dom": "npm:types-react-dom@alpha" + "@types/react": "npm:types-react@beta", + "@types/react-dom": "npm:types-react-dom@beta" } } ```