From c1e7cf39863e3e658b1d757e4f13672f0b35d88f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arda=20Sentu=CC=88rk?= Date: Fri, 27 Sep 2024 13:46:24 +0200 Subject: [PATCH] fix: key error SVA-1429 --- src/components/CardListItem.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/CardListItem.js b/src/components/CardListItem.js index 3283ab143..0c7c9a5f0 100644 --- a/src/components/CardListItem.js +++ b/src/components/CardListItem.js @@ -39,23 +39,24 @@ const renderCardContent = (item, horizontal, sue) => { borderRadius={sue ? 0 : imageBorderRadius} childrenContainerStyle={stylesWithProps({ aspectRatio, horizontal }).image} containerStyle={[styles.imageContainer, styles.sueImageContainer, imageStyle]} + key={picture.url} source={{ uri: picture.url }} /> ), subtitle: () => !!subtitle && ( - + {subtitle} ), title: () => !!title && ( - + {horizontal ? (title.length > 60 ? title.substring(0, 60) + '...' : title) : title} ), topTitle: () => ( - + {topTitle} ),