diff --git a/portal-ui/src/screens/Console/Support/RegisterCluster.tsx b/portal-ui/src/screens/Console/Support/RegisterCluster.tsx index a85f40a44..6bd78f62a 100644 --- a/portal-ui/src/screens/Console/Support/RegisterCluster.tsx +++ b/portal-ui/src/screens/Console/Support/RegisterCluster.tsx @@ -15,10 +15,9 @@ // along with this program. If not, see . import React, { Fragment } from "react"; -import Grid from "@mui/material/Grid"; import { Box, Button } from "@mui/material"; import { useNavigate } from "react-router-dom"; -import { HelpBox, WarnIcon } from "mds"; +import { HelpBox, WarnIcon, Grid } from "mds"; interface IRegisterCluster { compactMode?: boolean; @@ -44,22 +43,30 @@ const RegisterCluster = ({ compactMode = false }: IRegisterCluster) => { if (compactMode) { return ( - - {registerMessage} {redirectButton} - - } - iconComponent={} - help={} - /> + + + {registerMessage} {redirectButton} + + } + iconComponent={} + help={} + /> +
);