From 00ce95893d9f661a378db002f25def281e433d8b Mon Sep 17 00:00:00 2001 From: Igor Adrov Date: Fri, 6 Sep 2024 23:32:58 +0200 Subject: [PATCH] Fix starter packs scroll (#5190) --- src/components/StarterPack/Main/ProfilesList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx index 6174bff0..a5c7cd1b 100644 --- a/src/components/StarterPack/Main/ProfilesList.tsx +++ b/src/components/StarterPack/Main/ProfilesList.tsx @@ -40,7 +40,7 @@ export const ProfilesList = React.forwardRef( ref, ) { const t = useTheme() - const bottomBarOffset = useBottomBarOffset(200) + const bottomBarOffset = useBottomBarOffset(300) const initialNumToRender = useInitialNumToRender() const {currentAccount} = useSession() const {data, refetch, isError} = useAllListMembersQuery(listUri)