feat: upgrade minor and bug versions of dependencies

This commit is contained in:
dennis.ludwig
2021-09-28 10:40:18 +02:00
parent 8bf898c486
commit bce561a0ac
11 changed files with 213 additions and 103 deletions

View File

@@ -33,14 +33,14 @@ const ItemList: React.FC<ItemListProps> = ({
</div>
<div className="item-list__list">
{featuredItems.map((item, i) => (
<Item
key={item.name}
item={item}
noLeadingBorder={noLeadingBorder}
active={activeItem?.name === item.name}
style={itemStyle[i]}
greyedOut={false}
/>
// <Item
// key={item.name}
// item={item}
// noLeadingBorder={noLeadingBorder}
// active={activeItem?.name === item.name}
// style={itemStyle[i]}
// greyedOut={false}
// />
))}
{nonFeaturedItems.map((item, i) => (
<Item