Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: [M3-8696] - Explicitly define 'key' prop for Autocomplete instead of spreading #11041

Merged
merged 3 commits into from
Oct 3, 2024
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
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-11041-fixed-1727966039153.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

Explicitly define 'key' prop for Autocomplete instead of spreading ([#11041](https://github.com/linode/manager/pull/11041))
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export const Autocomplete = <
return renderOption ? (
renderOption(props, option, state, ownerState)
) : (
<ListItem {...props} data-qa-option>
<ListItem {...props} data-qa-option key={props.key}>
<>
<Box
sx={{
Expand Down
Loading