Skip to content

Commit

Permalink
rename item to value
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed Nov 6, 2023
1 parent 5494849 commit 90f8fb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const NavFlyout: React.FunctionComponent = () => {
<MenuItem onClick={onMenuItemClick} flyoutMenu={children} itemId={`nav-flyout-next-menu-${depth}`}>
Next menu
</MenuItem>
{Array.from({ length: numFlyouts - depth }).map((_item, index) => (
{Array.from({ length: numFlyouts - depth }).map((_value, index) => (
<MenuItem
onClick={onMenuItemClick}
key={`${depth}-${index}`}
Expand Down

0 comments on commit 90f8fb9

Please sign in to comment.