We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 430e58f commit 78764c7Copy full SHA for 78764c7
docs/explanation/concurrency.md
@@ -96,7 +96,7 @@ export function CitySearchCombobox() {
96
<Combobox aria-label="Cities">
97
<ComboboxInput
98
name="q"
99
- onChange={event =>
+ onChange={(event) =>
100
// submit the form onChange to get the list of cities
101
fetcher.submit(event.target.form)
102
}
@@ -107,7 +107,7 @@ export function CitySearchCombobox() {
107
<ComboboxPopover className="shadow-popup">
108
{fetcher.data.length > 0 ? (
109
<ComboboxList>
110
- {fetcher.data.map(city => (
+ {fetcher.data.map((city) => (
111
<ComboboxOption
112
key={city.id}
113
value={city.name}
0 commit comments