about summary refs log tree commit diff
path: root/src/view/screens/CustomFeed.tsx
diff options
context:
space:
mode:
authorAnsh Nanda <anshnanda10@gmail.com>2023-05-25 13:46:17 -0700
committerAnsh Nanda <anshnanda10@gmail.com>2023-05-25 13:46:17 -0700
commit14619cf8a30f1c4e75de926ad3898ac86b0a7dd0 (patch)
tree02f419fed4098a018580e71384afdac6d91b6533 /src/view/screens/CustomFeed.tsx
parentbe2beae1f18b385a1036742838cd7d73f484d946 (diff)
downloadvoidsky-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.tsx6
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"