fix(mod): add keys to categories list
This commit is contained in:
parent
3f237ab2af
commit
615b39a8d8
@ -553,6 +553,7 @@ const Body = ({
|
||||
return (
|
||||
<ReactRouterLink
|
||||
className='IBMSMSMBSSCategoriesBoxItem'
|
||||
key={`category-${i}`}
|
||||
target='_blank'
|
||||
to={{
|
||||
pathname: getGamePageRoute(game),
|
||||
@ -563,9 +564,12 @@ const Body = ({
|
||||
</ReactRouterLink>
|
||||
)
|
||||
})
|
||||
.reduce((prev, curr) => [
|
||||
.reduce((prev, curr, i) => [
|
||||
prev,
|
||||
<div className='IBMSMSMBSSCategoriesBoxSeparator'>
|
||||
<div
|
||||
key={`separator-${i}`}
|
||||
className='IBMSMSMBSSCategoriesBoxSeparator'
|
||||
>
|
||||
<p>></p>
|
||||
</div>,
|
||||
curr
|
||||
|
Loading…
x
Reference in New Issue
Block a user