Skip to content

Commit c61eb62

Browse files
committed
Merge branch 'main' of https://github.com/reactjs/reactjs.org into sync-0e1ff1a9
2 parents 7dc7f49 + 0e1ff1a commit c61eb62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/content/blog/2024/04/25/react-19-upgrade-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ To fix this warning, you can import `act` from `react`:
338338

339339
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.
340340

341-
See the [warning page](https://react.dev/warnings/react-dom-test-utils) to for alternatives.
341+
See the [warning page](https://react.dev/warnings/react-dom-test-utils) for alternatives.
342342

343343
#### Removed: `ReactDOM.render` {/*removed-reactdom-render*/}
344344

src/content/reference/rsc/server-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ For more info, see the docs for [Directives](/reference/rsc/directives).
198198
In the following example, the `Notes` Server Component imports an `Expandable` Client Component that uses state to toggle its `expanded` state:
199199
```js
200200
// Server Component
201-
import Exapandable from './Expandable';
201+
import Expandable from './Expandable';
202202

203203
async function Notes() {
204204
const notes = await db.notes.getAll();

0 commit comments

Comments
 (0)