diff --git a/src/features/marketplace/components/Items/Item.jsx b/src/features/marketplace/components/Items/Item.jsx index 7162f0a9..c9512050 100644 --- a/src/features/marketplace/components/Items/Item.jsx +++ b/src/features/marketplace/components/Items/Item.jsx @@ -53,7 +53,7 @@ class Item extends PureComponent { })(); this.setState({ moreByCurator: data.items.filter( - (item) => item.type !== convertedType && item.name !== this.props.data.data.name, + (item) => item.type === convertedType && item.name !== this.props.data.data.name, ), }); console.log(this.state.curator); @@ -371,7 +371,7 @@ class Item extends PureComponent {