diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 15:56:19 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 15:56:19 -0500 |
commit | e33dad8b723673a36979aea1d3d3132220a84a5d (patch) | |
tree | 78b3b428a5fdf6af6ec9ea48e8539adb54c38b2c /src/view/screens/CustomFeed.tsx | |
parent | a39a06ba09803412bca053d9fc836d1d2cdd4b4b (diff) | |
parent | 881be748d52f0bbf19543ac8a08d81b46bb8af5d (diff) | |
download | voidsky-e33dad8b723673a36979aea1d3d3132220a84a5d.tar.zst |
Merge branch 'custom-algos' of github.com:bluesky-social/social-app into custom-algos
Diffstat (limited to 'src/view/screens/CustomFeed.tsx')
-rw-r--r-- | src/view/screens/CustomFeed.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/screens/CustomFeed.tsx b/src/view/screens/CustomFeed.tsx index 49798d758..79b10de04 100644 --- a/src/view/screens/CustomFeed.tsx +++ b/src/view/screens/CustomFeed.tsx @@ -338,7 +338,11 @@ export const CustomFeedScreen = withAuthRequired( extraData={[uri, isPinned]} /> {isScrolledDown ? ( - <LoadLatestBtn onPress={onScrollToTop} label="Scroll to top" /> + <LoadLatestBtn + onPress={onScrollToTop} + label="Scroll to top" + showIndicator={false} + /> ) : null} <FAB testID="composeFAB" |