diff options
Diffstat (limited to 'src/view/com/feeds/CustomFeed.tsx')
-rw-r--r-- | src/view/com/feeds/CustomFeed.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/feeds/CustomFeed.tsx b/src/view/com/feeds/CustomFeed.tsx index 5a93020a0..5440a8e8f 100644 --- a/src/view/com/feeds/CustomFeed.tsx +++ b/src/view/com/feeds/CustomFeed.tsx @@ -24,11 +24,13 @@ export const CustomFeed = observer( item, style, showSaveBtn = false, + showDescription = false, showLikes = false, }: { item: CustomFeedModel style?: StyleProp<ViewStyle> showSaveBtn?: boolean + showDescription?: boolean showLikes?: boolean }) => { const store = useStores() @@ -75,7 +77,7 @@ export const CustomFeed = observer( )} </View> - {item.data.description ? ( + {showDescription && item.data.description ? ( <Text style={[pal.textLight, styles.description]} numberOfLines={3}> {item.data.description} </Text> |