diff options
author | Khuddite <62555977+khuddite@users.noreply.github.com> | 2024-11-23 15:20:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 20:20:09 +0000 |
commit | 0395ba3e793c16c964dd64f72a43566aa12a4d35 (patch) | |
tree | 98dc354534b24a89e8df401115376a6403f8178e /src/components/StarterPack/Main | |
parent | b892d8be0896a11925a8b5641fe2ee3fd8474b8d (diff) | |
download | voidsky-0395ba3e793c16c964dd64f72a43566aa12a4d35.tar.zst |
derive bottom padding from header height for profiles list (#6152)
Diffstat (limited to 'src/components/StarterPack/Main')
-rw-r--r-- | src/components/StarterPack/Main/ProfilesList.tsx | 2 |
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) |