Remove health diagnostic warning (#2779)

This commit is contained in:
Javier Adriel
2023-04-17 17:00:03 -06:00
committed by GitHub
parent 0dacc4d49e
commit 0e0f5030da

View File

@@ -23,7 +23,7 @@ import {
import { AppState, useAppDispatch } from "../../../store";
import { useSelector } from "react-redux";
import { useNavigate } from "react-router-dom";
import { Box, Button, Grid, HelpBox, Loader, WarnIcon } from "mds";
import { Box, Button, Grid, HelpBox, InfoIcon, Loader } from "mds";
import {
DiagStatError,
DiagStatInProgress,
@@ -354,15 +354,10 @@ const HealthInfo = ({ classes }: IHealthInfo) => {
<br />
<HelpBox
title={
"During the health diagnostics run, all production traffic will be suspended."
}
iconComponent={<WarnIcon />}
help={
<Fragment>
Cluster Health Report will be uploaded to Subnet, and is
viewable from your Subnet Diagnostics dashboard.
</Fragment>
"Cluster Health Report will be uploaded to Subnet, and is viewable from your Subnet Diagnostics dashboard."
}
iconComponent={<InfoIcon />}
help={""}
/>
</Fragment>
)}