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 and MounirDhahri committed Dec 19, 2024
1 parent ad23f07 commit 3901ea8
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 @@ -18,7 +18,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 3901ea8

Please sign in to comment.