Merge branch 'web-search' of https://github.com/mozzius/bluesky-official-app into mozzius-web-search

This commit is contained in:
Paul Frazee 2023-12-28 13:27:02 -08:00
commit 47127ce0ab
6 changed files with 52 additions and 42 deletions

View file

@ -21,7 +21,7 @@ export function DesktopFeeds() {
})
return (
<View style={[styles.container, pal.view, pal.border]}>
<View style={[styles.container, pal.view]}>
<FeedItem href="/" title="Following" current={route.name === 'Home'} />
{feeds
.filter(f => f.displayName !== 'Following')
@ -91,7 +91,5 @@ const styles = StyleSheet.create({
width: 300,
paddingHorizontal: 12,
paddingVertical: 18,
borderTopWidth: 1,
borderBottomWidth: 1,
},
})