mirror of
https://github.com/mue/mue.git
synced 2026-07-09 13:35:35 +02:00
fix: remove redundant type tag
This commit is contained in:
@@ -361,18 +361,9 @@ class Item extends PureComponent {
|
||||
})}
|
||||
</span>
|
||||
<div>
|
||||
{/* {this.state.curator.items
|
||||
.filter(
|
||||
(item) =>
|
||||
item.name !== this.props.data.data.name &&
|
||||
item.type !== this.props.data.data.type,
|
||||
)
|
||||
.map((item) => (
|
||||
<div key={`${item.type}/${item.name}`}>{item.display_name}</div>
|
||||
))} */}
|
||||
<Items
|
||||
isCurator={true}
|
||||
type={'all'}
|
||||
type={this.props.data.data.type}
|
||||
items={this.state.moreByCurator}
|
||||
onCollection={this.state.collection}
|
||||
toggleFunction={(input) => this.props.toggleFunction('item', input)}
|
||||
|
||||
Reference in New Issue
Block a user