Remove of suspended traffic warning in profile page (#1926)

This commit is contained in:
Alex
2022-04-29 01:45:42 -05:00
committed by GitHub
parent 6f676f73a4
commit 663a5b196d

View File

@@ -13,8 +13,6 @@ import {
containerForHeader,
inlineCheckboxes,
} from "../Common/FormComponents/common/styleLibrary";
import HelpBox from "../../../common/HelpBox";
import WarnIcon from "../../../icons/WarnIcon";
const styles = (theme: Theme) =>
createStyles({
@@ -179,18 +177,6 @@ const Profile = ({ classes }: IProfileProps) => {
</Button>
</Grid>
</Grid>
{!profilingStarted && (
<Fragment>
<br />
<HelpBox
title={
"During the profiling run all production traffic will be suspended."
}
iconComponent={<WarnIcon />}
help={<Fragment />}
/>
</Fragment>
)}
</PageLayout>
</Fragment>
);