1- /* eslint-disable @typescript-eslint/no-unused-vars */
21import React , { useState , useEffect } from 'react' ;
32import {
43 Paper ,
@@ -7,14 +6,11 @@ import {
76 Button ,
87 Alert ,
98 CircularProgress ,
10- Card ,
11- CardContent ,
129 Stepper ,
1310 Step ,
1411 StepLabel ,
1512 StepContent ,
1613 Chip ,
17- Divider ,
1814 useMediaQuery ,
1915 useTheme as useMuiTheme ,
2016} from '@mui/material' ;
@@ -23,10 +19,8 @@ import {
2319 Extension as ExtensionIcon ,
2420 Download as DownloadIcon ,
2521 FileUpload as FileUploadIcon ,
26- ArrowForward as ArrowForwardIcon ,
2722 CheckCircle as CheckCircleIcon ,
2823 Info as InfoIcon ,
29- Store as StoreIcon ,
3024} from '@mui/icons-material' ;
3125import { toast } from 'react-hot-toast' ;
3226import useTheme from '../stores/themeStore' ;
@@ -40,7 +34,7 @@ const ClusterManagementPage: React.FC = () => {
4034 const isMobile = useMediaQuery ( muiTheme . breakpoints . down ( 'md' ) ) ;
4135 const [ clusterPluginLoaded , setClusterPluginLoaded ] = useState ( false ) ;
4236 const [ isLoading , setIsLoading ] = useState ( true ) ;
43- const [ activeStep , setActiveStep ] = useState ( 0 ) ;
37+ const [ activeStep ] = useState ( 0 ) ;
4438 const navigate = useNavigate ( ) ;
4539
4640 const installationSteps = [
0 commit comments