Skip to content

Commit

Permalink
Merge pull request #43984 from allgandalf/patch-4
Browse files Browse the repository at this point in the history
[fix]:  [DEV] Console Warning when opening FAB menu
  • Loading branch information
AndrewGable authored Jun 20, 2024
2 parents ea9ea07 + a90c0d9 commit dd549f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/PopoverMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ function PopoverMenu({
{enteredSubMenuIndexes.length > 0 && renderBackButtonItem()}
{currentMenuItems.map((item, menuIndex) => (
<FocusableMenuItem
key={item.text}
// eslint-disable-next-line react/no-array-index-key
key={`${item.text}_${menuIndex}`}
icon={item.icon}
iconWidth={item.iconWidth}
iconHeight={item.iconHeight}
Expand Down

0 comments on commit dd549f7

Please sign in to comment.