Skip to content

Commit

Permalink
fix: gallery placeholder height in case of no image (#11312)
Browse files Browse the repository at this point in the history
fix: placeholder height in case of no image
  • Loading branch information
gkartalis authored Dec 19, 2024
1 parent 4914580 commit 4a4c3c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Components/ImageWithFallback/ImageWithFallback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ImageWithFallback: React.FC<ImageWithFallbackProps> = ({
<Box
testID="fallback-image"
width={width}
height={height}
height={height ?? 250}
backgroundColor="black10"
borderRadius="md"
/>
Expand Down

0 comments on commit 4a4c3c8

Please sign in to comment.