Skip to content

Commit cc0eee6

Browse files
authored
Merge pull request #23786 from github/repo-sync
repo sync
2 parents 01aeeac + bb0bd0c commit cc0eee6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/ui/Picker/Fields.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ export const Fields = (fieldProps: {
1717

1818
return (
1919
<ActionList selectionVariant="single">
20-
{items.map((item) =>
20+
{items.map((item, i) =>
2121
item.divider ? (
22-
<ActionList.Divider />
22+
<ActionList.Divider key={`divider${i}`} />
2323
) : (
2424
<ActionList.Item
2525
as={Link}

0 commit comments

Comments
 (0)