diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-17 13:17:08 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-17 13:17:08 -0600 |
commit | 859087f21d148d52d707b0057458e7dd2cbbea0a (patch) | |
tree | 84c0f56ed1023501c665c91a495970f24604865b /src/view/shell | |
parent | c6b137a15356f894ba555661184af4cea4d916a2 (diff) | |
download | voidsky-859087f21d148d52d707b0057458e7dd2cbbea0a.tar.zst |
Fix loadLatest() on home feed
Diffstat (limited to 'src/view/shell')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 2 |
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> |