Skip to content

Commit

Permalink
fix: Add extra padding to My Collection artwork list (#6984)
Browse files Browse the repository at this point in the history
  • Loading branch information
olerichter00 authored Jun 27, 2022
1 parent 9c63514 commit 4e68ed3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { PrefetchFlatList, PrefetchFlatListProps } from "app/Components/Prefetch
import { extractNodes } from "app/utils/extractNodes"
import { Flex, Spinner } from "palette"
import React, { useState } from "react"
import { Platform } from "react-native"
import { RelayPaginationProp, useFragment } from "react-relay"
import { graphql } from "relay-runtime"
import { MyCollectionArtworkListItem } from "./MyCollectionArtworkListItem"
Expand Down Expand Up @@ -49,7 +50,7 @@ export const MyCollectionArtworkList: React.FC<{
}

return (
<Flex>
<Flex pb={Platform.OS === "android" ? 5 : 0}>
<PrefetchFlatList
data={preprocessedArtworks}
renderItem={({ item }) => <MyCollectionArtworkListItem artwork={item} />}
Expand Down

0 comments on commit 4e68ed3

Please sign in to comment.