diff --git a/src/components/StarterPack/ProfileStarterPacks.tsx b/src/components/StarterPack/ProfileStarterPacks.tsx index c335494001..a19d619e3d 100644 --- a/src/components/StarterPack/ProfileStarterPacks.tsx +++ b/src/components/StarterPack/ProfileStarterPacks.tsx @@ -159,6 +159,17 @@ export function ProfileStarterPacks({ [isTabletOrDesktop, t.atoms.border_contrast_low], ) + const renderFooter = useCallback(() => { + if (!data || items?.length === 0) { + return null + } + return ( + + {isMe && } + + ) + }, [data, items?.length, isMe, bottomBarOffset]) + return ( )