mirror of
https://github.com/ecency/ecency-mobile.git
synced 2025-01-07 06:32:02 +03:00
updated
This commit is contained in:
parent
1b0a1e0970
commit
0a100811a7
@ -76,9 +76,9 @@ class BookmarksScreen extends Component {
|
|||||||
) : (
|
) : (
|
||||||
!isNoItem && (
|
!isNoItem && (
|
||||||
<FlatList
|
<FlatList
|
||||||
data={
|
data={data.map(item => (item._id !== data[item._id] && isFavorites
|
||||||
data.map(item => (item._id !== data[item._id] && isFavorites ? item.account !== data[item.account] && item : item))
|
? item.account !== data[item.account] && item
|
||||||
}
|
: item))}
|
||||||
keyExtractor={item => item._id}
|
keyExtractor={item => item._id}
|
||||||
removeClippedSubviews={false}
|
removeClippedSubviews={false}
|
||||||
renderItem={({ item, index }) => this._renderItem(item, index, type)}
|
renderItem={({ item, index }) => this._renderItem(item, index, type)}
|
||||||
|
Loading…
Reference in New Issue
Block a user