diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-25 13:46:17 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-25 13:46:17 -0700 |
commit | 14619cf8a30f1c4e75de926ad3898ac86b0a7dd0 (patch) | |
tree | 02f419fed4098a018580e71384afdac6d91b6533 /src/view/screens/CustomFeed.tsx | |
parent | be2beae1f18b385a1036742838cd7d73f484d946 (diff) | |
download | voidsky-14619cf8a30f1c4e75de926ad3898ac86b0a7dd0.tar.zst |
fix type errors on Custom Feed screen
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" |