mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-22 17:22:05 -07:00
fix(warning): Fixed react browser console warning
This commit is contained in:
@@ -13,9 +13,9 @@ function TabsMenu (props) {
|
||||
>
|
||||
<Tab title='General' eventKey='Configure' />
|
||||
|
||||
{MenuComponents.map(menuItem => (
|
||||
{MenuComponents.map((menuItem, i) => (
|
||||
<Tab
|
||||
key={menuItem.id}
|
||||
key={`${menuItem.id}-${i}`}
|
||||
eventKey={menuItem.key}
|
||||
title={menuItem.key}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user