diff --git a/beta/src/content/learn/lifecycle-of-reactive-effects.md b/beta/src/content/learn/lifecycle-of-reactive-effects.md index 803e7be9efc..1bdf7109511 100644 --- a/beta/src/content/learn/lifecycle-of-reactive-effects.md +++ b/beta/src/content/learn/lifecycle-of-reactive-effects.md @@ -748,7 +748,7 @@ If you have an existing codebase, you might have some Effects that suppress the useEffect(() => { // ... // 🔴 Avoid suppressing the linter like this: - // eslint-ignore-next-line react-hooks/exhaustive-dependencies + // eslint-ignore-next-line react-hooks/exhaustive-deps }, []); ``` diff --git a/beta/src/content/learn/removing-effect-dependencies.md b/beta/src/content/learn/removing-effect-dependencies.md index 296eaafa8b4..e824a5bee03 100644 --- a/beta/src/content/learn/removing-effect-dependencies.md +++ b/beta/src/content/learn/removing-effect-dependencies.md @@ -285,7 +285,7 @@ If you have an existing codebase, you might have some Effects that suppress the useEffect(() => { // ... // 🔴 Avoid suppressing the linter like this: - // eslint-ignore-next-line react-hooks/exhaustive-dependencies + // eslint-ignore-next-line react-hooks/exhaustive-deps }, []); ``` diff --git a/beta/src/content/reference/react/useEffect.md b/beta/src/content/reference/react/useEffect.md index 41c65f1a45f..ed2be07022e 100644 --- a/beta/src/content/reference/react/useEffect.md +++ b/beta/src/content/reference/react/useEffect.md @@ -1130,7 +1130,7 @@ If you have an existing codebase, you might have some Effects that suppress the useEffect(() => { // ... // 🔴 Avoid suppressing the linter like this: - // eslint-ignore-next-line react-hooks/exhaustive-dependencies + // eslint-ignore-next-line react-hooks/exhaustive-deps }, []); ```