derive bottom padding from header height for profiles list (#6152)

This commit is contained in:
Khuddite
2024-11-23 15:20:09 -05:00
committed by GitHub
parent b892d8be08
commit 0395ba3e79
@@ -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)