Skip to content

Commit 37c7022

Browse files
committed
chore: format
1 parent 57301f8 commit 37c7022

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/explanation/concurrency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function CitySearchCombobox() {
9696
<Combobox aria-label="Cities">
9797
<ComboboxInput
9898
name="q"
99-
onChange={event =>
99+
onChange={(event) =>
100100
// submit the form onChange to get the list of cities
101101
fetcher.submit(event.target.form)
102102
}
@@ -107,7 +107,7 @@ export function CitySearchCombobox() {
107107
<ComboboxPopover className="shadow-popup">
108108
{fetcher.data.length > 0 ? (
109109
<ComboboxList>
110-
{fetcher.data.map(city => (
110+
{fetcher.data.map((city) => (
111111
<ComboboxOption
112112
key={city.id}
113113
value={city.name}

0 commit comments

Comments
 (0)