Skip to content

Commit

Permalink
fix(artwork): Fix cutoff on closed auction artworks (#14763)
Browse files Browse the repository at this point in the history
fix(artwork): Fix cutoff on closed auction artworks
  • Loading branch information
artsy-peril[bot] authored Nov 1, 2024
2 parents 5cf3637 + a38e2a0 commit 63b000f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const SuggestedArtworksShelf: FC<SuggestedArtworksShelfProps> = ({
suggestedArtworksCount > NUMBER_OF_ARTWORKS_TO_SHOW

if (!displaySuggestedArtworksSection) return null

return (
<>
<Column span={12} display={["none", "block"]}>
Expand All @@ -46,7 +47,7 @@ export const SuggestedArtworksShelf: FC<SuggestedArtworksShelfProps> = ({
gap={2}
justifyContent="center"
overflow="hidden"
height="340px"
height="350px"
>
{artworks.map(artwork => (
<ShelfArtworkFragmentContainer
Expand Down

0 comments on commit 63b000f

Please sign in to comment.