about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorKhuddite <62555977+khuddite@users.noreply.github.com>2024-11-23 15:20:09 -0500
committerGitHub <noreply@github.com>2024-11-23 20:20:09 +0000
commit0395ba3e793c16c964dd64f72a43566aa12a4d35 (patch)
tree98dc354534b24a89e8df401115376a6403f8178e /src
parentb892d8be0896a11925a8b5641fe2ee3fd8474b8d (diff)
downloadvoidsky-0395ba3e793c16c964dd64f72a43566aa12a4d35.tar.zst
derive bottom padding from header height for profiles list (#6152)
Diffstat (limited to 'src')
-rw-r--r--src/components/StarterPack/Main/ProfilesList.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx
index ecd6225bb..c1c10c76b 100644
--- a/src/components/StarterPack/Main/ProfilesList.tsx
+++ b/src/components/StarterPack/Main/ProfilesList.tsx
@@ -40,7 +40,7 @@ export const ProfilesList = React.forwardRef<SectionRef, ProfilesListProps>(
     ref,
   ) {
     const t = useTheme()
-    const bottomBarOffset = useBottomBarOffset(300)
+    const bottomBarOffset = useBottomBarOffset(headerHeight)
     const initialNumToRender = useInitialNumToRender()
     const {currentAccount} = useSession()
     const {data, refetch, isError} = useAllListMembersQuery(listUri)