From b9131582704207150e66618cf98486f90cd28e12 Mon Sep 17 00:00:00 2001 From: Nouman Tahir Date: Fri, 6 Aug 2021 19:17:51 +0500 Subject: [PATCH] fixed keyExtractor issue from notifications list --- src/components/notification/view/notificationView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/notification/view/notificationView.tsx b/src/components/notification/view/notificationView.tsx index 6b3282784..887b65e7c 100644 --- a/src/components/notification/view/notificationView.tsx +++ b/src/components/notification/view/notificationView.tsx @@ -196,7 +196,7 @@ class NotificationView extends PureComponent { _notifications && _notifications.length > 0 ? ( item.title + index} + keyExtractor={(item, index) => `${item.id}-${index}`} onEndReached={() => getActivities(selectedFilter, true)} ListFooterComponent={this._renderFooterLoading} ListEmptyComponent={}