Merge pull request #2182 from peZhmanParsaee/bugfix/hide-certificate-expiry-for-non-http-uptimes

hide certificate expiry box for non-http uptimes
This commit is contained in:
Alexander Holliday
2025-05-07 10:30:06 -07:00
committed by GitHub
@@ -61,18 +61,20 @@ const UptimeStatusBoxes = ({
</>
}
/>
<StatBox
heading="certificate expiry"
subHeading={
<Typography
component="span"
fontSize={13}
color={theme.palette.primary.contrastText}
>
{certificateExpiry}
</Typography>
}
/>
{monitor?.type === "http" && (
<StatBox
heading="certificate expiry"
subHeading={
<Typography
component="span"
fontSize={13}
color={theme.palette.primary.contrastText}
>
{certificateExpiry}
</Typography>
}
/>
)}
</StatusBoxes>
);
};