From 0e1ff1a94fdd8a5a0ae06cdb71fc0babdaa7b01e Mon Sep 17 00:00:00 2001 From: Ryczko Date: Fri, 3 May 2024 13:59:37 +0200 Subject: [PATCH] Fix React 19 upgrade guide typo (#6830) --- 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 84ef768cd..4d4355a47 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 @@ -338,7 +338,7 @@ To fix this warning, you can import `act` from `react`: All other `test-utils` functions have been removed. These utilities were uncommon, and made it too easy to depend on low level implementation details of your components and React. In React 19, these functions will error when called and their exports will be removed in a future version. -See the [warning page](https://react.dev/warnings/react-dom-test-utils) to for alternatives. +See the [warning page](https://react.dev/warnings/react-dom-test-utils) for alternatives. #### Removed: `ReactDOM.render` {/*removed-reactdom-render*/}