Skip to content

Commit 41be527

Browse files
authored
Docs: Fix useEffect link typo in react/useLayoutEffect.md (#5661)
* fix typo * fix typo
1 parent fc42e16 commit 41be527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beta/src/content/reference/react/useLayoutEffect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function Tooltip() {
6565
6666
* Effects **only run on the client.** They don't run during server rendering.
6767
68-
* The code inside `useLayoutEffect` and all state updates scheduled from it **block the browser from repainting the screen.** When used excessively, this can make your app very slow. When possible, prefer [`useEffect`.](/reference/reac/useEffect)
68+
* The code inside `useLayoutEffect` and all state updates scheduled from it **block the browser from repainting the screen.** When used excessively, this can make your app very slow. When possible, prefer [`useEffect`.](/reference/react/useEffect)
6969
7070
---
7171

0 commit comments

Comments
 (0)