Skip to content

Commit 11d4b03

Browse files
committed
fix height
1 parent 9e08a25 commit 11d4b03

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/Alerts/AlertDetails/AlertImages.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ export const AlertImages = ({ sequence }: AlertImagesType) => {
3838
});
3939

4040
return (
41-
<Paper
42-
sx={{ minHeight: 500, height: '100% ', borderRadius: 6, padding: 2 }}
43-
>
41+
<Paper sx={{ height: '100% ', borderRadius: 6, padding: 2 }}>
4442
<Grid container direction="column" spacing={2}>
4543
<Grid
4644
container
@@ -63,7 +61,7 @@ export const AlertImages = ({ sequence }: AlertImagesType) => {
6361
{isPending && (
6462
<Grid container spacing={1}>
6563
{/* One skeleton in place of the image, one skeleton in place of the timeline */}
66-
<Skeleton variant="rectangular" width="100%" height={500} />
64+
<Skeleton variant="rectangular" width="100%" height={400} />
6765
<Skeleton variant="rectangular" width="100%" height={80} />
6866
</Grid>
6967
)}

0 commit comments

Comments
 (0)