Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix loadLatest() on home feed

+2 -2
+1 -1
src/state/models/feed-view.ts
··· 405 405 const toPrepend = [] 406 406 for (const item of res.data.feed) { 407 407 if (this.feed.find(item2 => item2.uri === item.uri)) { 408 - return // stop here - we've hit a post we already have 408 + break // stop here - we've hit a post we already have 409 409 } 410 410 toPrepend.unshift(item) // reverse the order 411 411 }
+1 -1
src/view/shell/mobile/index.tsx
··· 115 115 <Text style={styles.notificationCountLabel}>{notificationCount}</Text> 116 116 </View> 117 117 ) : undefined} 118 - {tabCount > 1 ? ( 118 + {tabCount && tabCount > 1 ? ( 119 119 <View style={styles.tabCount}> 120 120 <Text style={styles.tabCountLabel}>{tabCount}</Text> 121 121 </View>