Skip to content
Merged
Show file tree
Hide file tree
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
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