Skip to content

Commit 708f551

Browse files
Ishaan SoniIshaan Soni
authored andcommitted
fixed frontend formatting
1 parent 038b157 commit 708f551

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/pages/ClusterManagement.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable @typescript-eslint/no-unused-vars */
21
import React, { useState, useEffect } from 'react';
32
import {
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';
3125
import { toast } from 'react-hot-toast';
3226
import 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

Comments
 (0)