mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 11:21:41 +03:00
fix keyextractor issue
This commit is contained in:
parent
d80cb69f22
commit
47bed81467
@ -196,7 +196,7 @@ class NotificationView extends PureComponent {
|
||||
_notifications && _notifications.length > 0 ? (
|
||||
<SectionList
|
||||
sections={_notifications}
|
||||
keyExtractor={(item, index) => item.title + index}
|
||||
keyExtractor={(item, index) => `${item.id}-${index}`}
|
||||
onEndReached={() => getActivities(selectedFilter, true)}
|
||||
ListFooterComponent={this._renderFooterLoading}
|
||||
ListEmptyComponent={<ListPlaceHolder />}
|
||||
|
Loading…
Reference in New Issue
Block a user