diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-28 13:27:02 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-12-28 13:27:02 -0800 |
commit | 47127ce0abf48f6c6d85e04be6eb04ca33804168 (patch) | |
tree | 6590f37af802ae2e80efe04256b841c433d0aa22 /src/view/shell/desktop/Feeds.tsx | |
parent | 40a110c5416de08bc8a929ecd7dd023028a869bf (diff) | |
parent | 71b6a447ab250201e5772e43b745edb587b781b7 (diff) | |
download | voidsky-47127ce0abf48f6c6d85e04be6eb04ca33804168.tar.zst |
Merge branch 'web-search' of https://github.com/mozzius/bluesky-official-app into mozzius-web-search
Diffstat (limited to 'src/view/shell/desktop/Feeds.tsx')
-rw-r--r-- | src/view/shell/desktop/Feeds.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/view/shell/desktop/Feeds.tsx b/src/view/shell/desktop/Feeds.tsx index 93b96e704..a8f5f1c66 100644 --- a/src/view/shell/desktop/Feeds.tsx +++ b/src/view/shell/desktop/Feeds.tsx @@ -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, }, }) |