Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/reference/react/useContext.md
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,7 @@ You might have a provider without a `value` in the tree:

If you forget to specify `value`, it's like passing `value={undefined}`.

You may have also mistakingly used a different prop name by mistake:
You may have also mistakenly used a different prop name by mistake:
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence is redundant: it uses both "mistakenly" and "by mistake". Consider removing one (e.g., drop "by mistake") to keep the wording concise.

Suggested change
You may have also mistakenly used a different prop name by mistake:
You may have also mistakenly used a different prop name:

Copilot uses AI. Check for mistakes.

```js {1,2}
// 🚩 Doesn't work: prop should be called "value"
Expand Down
Loading