Skip to content

Commit

Permalink
Typo fix: '?' is placed in a wrong position (#12263)
Browse files Browse the repository at this point in the history
* Typo fix: '?' is placed in a wrong position

* Sign CLA
  • Loading branch information
whxhlgy authored Nov 12, 2024
1 parent cb04756 commit dd323b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@
- vitekzach
- vonagam
- WalkAlone0325
- whxhlgy
- willemarcel
- williamsdyyz
- willsawyerrrr
Expand Down
2 changes: 1 addition & 1 deletion docs/start/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ Consider a search field that updates a list as the user types:
^ lose correct state
```

Even though the query for `q?=ryan` went out later, it completed earlier. If not handled correctly, the results will briefly be the correct values for `?q=ryan` but then flip over the incorrect results for `?q=ry`. Throttling and debouncing are not enough (you can still interrupt the requests that get through). You need cancellation.
Even though the query for `?q=ryan` went out later, it completed earlier. If not handled correctly, the results will briefly be the correct values for `?q=ryan` but then flip over the incorrect results for `?q=ry`. Throttling and debouncing are not enough (you can still interrupt the requests that get through). You need cancellation.

If you're using React Router's data conventions you avoid this problem completely and automatically.

Expand Down

0 comments on commit dd323b6

Please sign in to comment.