From d951a5a099e13dc4757d58aa8143409ffc76f737 Mon Sep 17 00:00:00 2001 From: martmull Date: Fri, 14 Mar 2025 12:00:03 +0100 Subject: [PATCH] Fix Each child in a list should have a unique key prop. (#10881) As title --- .../components/CommandMenuContextChipGroups.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/twenty-front/src/modules/command-menu/components/CommandMenuContextChipGroups.tsx b/packages/twenty-front/src/modules/command-menu/components/CommandMenuContextChipGroups.tsx index 1739bb606..efc2b2909 100644 --- a/packages/twenty-front/src/modules/command-menu/components/CommandMenuContextChipGroups.tsx +++ b/packages/twenty-front/src/modules/command-menu/components/CommandMenuContextChipGroups.tsx @@ -24,9 +24,9 @@ export const CommandMenuContextChipGroups = ({ if (contextChips.length < 3) { return ( <> - {contextChips.map((chip) => ( + {contextChips.map((chip, index) => ( - {firstChips.map((chip) => ( + {firstChips.map((chip, index) => ( {