Skip to content
Closed
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
4 changes: 2 additions & 2 deletions docs/data/material/components/autocomplete/GoogleMaps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ export default function GoogleMaps() {
option.structured_formatting.main_text,
matches.map((match: any) => [match.offset, match.offset + match.length]),
);

const {key, ...nonKeyProps} = props as any;
return (
<li {...props}>
<li key={key} {...nonKeyProps}>
<Grid container sx={{ alignItems: 'center' }}>
<Grid item sx={{ display: 'flex', width: 44 }}>
<LocationOnIcon sx={{ color: 'text.secondary' }} />
Expand Down