Skip to content

Commit 85b5efa

Browse files
committed
fix: Line too long
1 parent 3f7c67d commit 85b5efa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/AddressAutocomplete.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ const AddressAutocomplete = ({
4949
}, [fields]);
5050

5151
// Options label
52-
const getOptionLabel = useCallback((option: PlaceType) => (typeof option === 'string' ? option : option.description), []);
52+
const getOptionLabel = useCallback(
53+
(option: PlaceType) => (typeof option === 'string' ? option : option.description),
54+
[]
55+
);
5356

5457
// Autocomplete equals
5558
const isOptionEqualToValue = useCallback(

0 commit comments

Comments
 (0)