about summary refs log tree commit diff
path: root/src/view/shell
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-11-17 13:17:08 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-11-17 13:17:08 -0600
commit859087f21d148d52d707b0057458e7dd2cbbea0a (patch)
tree84c0f56ed1023501c665c91a495970f24604865b /src/view/shell
parentc6b137a15356f894ba555661184af4cea4d916a2 (diff)
downloadvoidsky-859087f21d148d52d707b0057458e7dd2cbbea0a.tar.zst
Fix loadLatest() on home feed
Diffstat (limited to 'src/view/shell')
-rw-r--r--src/view/shell/mobile/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx
index de973bd98..8f9b13eea 100644
--- a/src/view/shell/mobile/index.tsx
+++ b/src/view/shell/mobile/index.tsx
@@ -115,7 +115,7 @@ const Btn = ({
           <Text style={styles.notificationCountLabel}>{notificationCount}</Text>
         </View>
       ) : undefined}
-      {tabCount > 1 ? (
+      {tabCount && tabCount > 1 ? (
         <View style={styles.tabCount}>
           <Text style={styles.tabCountLabel}>{tabCount}</Text>
         </View>