Skip to content

Commit

Permalink
fix(home view): whitespace at end of artist sections (#10889)
Browse files Browse the repository at this point in the history
  • Loading branch information
anandaroop authored Oct 4, 2024
1 parent fe8b5e3 commit b32d1aa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/Scenes/HomeView/Sections/HomeViewSectionArtists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ interface HomeViewSectionArtworksProps {
}

type Artist = ExtractNodeType<HomeViewSectionArtists_section$data["artistsConnection"]>

export const HomeViewSectionArtists: React.FC<HomeViewSectionArtworksProps> = ({
section,
relay,
Expand Down Expand Up @@ -109,11 +110,12 @@ export const HomeViewSectionArtists: React.FC<HomeViewSectionArtworksProps> = ({
alignItems="center"
>
<Spinner />
<Spacer x={2} />
</Flex>
)
}

return null
return <Spacer x={2} />
}}
renderItem={({ item: artist, index }) => {
return (
Expand Down

0 comments on commit b32d1aa

Please sign in to comment.