diff options
author | Igor Adrov <nucleartux@gmail.com> | 2024-09-06 23:32:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 16:32:58 -0500 |
commit | 00ce95893d9f661a378db002f25def281e433d8b (patch) | |
tree | ea3bb630f48de474ecd433270a03288ee5413767 /src/components/StarterPack | |
parent | c5faa6034472f241778276a234021fb4eb12f804 (diff) | |
download | voidsky-00ce95893d9f661a378db002f25def281e433d8b.tar.zst |
Fix starter packs scroll (#5190)
Diffstat (limited to 'src/components/StarterPack')
-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 6174bff02..a5c7cd1b7 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(200) + const bottomBarOffset = useBottomBarOffset(300) const initialNumToRender = useInitialNumToRender() const {currentAccount} = useSession() const {data, refetch, isError} = useAllListMembersQuery(listUri) |