about summary refs log tree commit diff
path: root/src/view/com/algos/AlgoItem.tsx
diff options
context:
space:
mode:
authorAnsh Nanda <anshnanda10@gmail.com>2023-05-14 15:38:38 -0700
committerAnsh Nanda <anshnanda10@gmail.com>2023-05-14 15:38:38 -0700
commit6105314f15448a965ef93044c58ab50ff6616bb4 (patch)
tree168bedb34821abfbad41b0099da515aaa4400e15 /src/view/com/algos/AlgoItem.tsx
parent8948118d5c1a63b1d798e36d657eaaa5d34a6a0d (diff)
downloadvoidsky-6105314f15448a965ef93044c58ab50ff6616bb4.tar.zst
add empty view to CustomAlgorithms screen
Diffstat (limited to 'src/view/com/algos/AlgoItem.tsx')
-rw-r--r--src/view/com/algos/AlgoItem.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/algos/AlgoItem.tsx b/src/view/com/algos/AlgoItem.tsx
index 987bfd68d..e475624c5 100644
--- a/src/view/com/algos/AlgoItem.tsx
+++ b/src/view/com/algos/AlgoItem.tsx
@@ -11,6 +11,7 @@ import {AlgoItemModel} from 'state/models/feeds/algo/algo-item'
 const AlgoItem = observer(
   ({item, style}: {item: AlgoItemModel; style?: StyleProp<ViewStyle>}) => {
     const pal = usePalette('default')
+
     return (
       <View style={[styles.container, style]} key={item.data.uri}>
         <View style={[styles.headerContainer]}>
@@ -19,7 +20,7 @@ const AlgoItem = observer(
           </View>
           <View style={[styles.headerTextContainer]}>
             <Text style={[pal.text, s.bold]}>
-              {item.data.displayName ?? 'Feed name'}
+              {item.data.displayName ? item.data.displayName : 'Feed name'}
             </Text>
             <Text style={[pal.textLight, styles.description]}>
               {item.data.description ??