chore: remove refresh button on node setup (#174)
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
import { ReactElement, useEffect, useState, useContext } from 'react'
|
import { ReactElement, useEffect, useState, useContext } from 'react'
|
||||||
import { makeStyles, Theme, createStyles } from '@material-ui/core/styles'
|
import { makeStyles, Theme, createStyles } from '@material-ui/core/styles'
|
||||||
import { Typography, Paper, Button, Step, StepLabel, StepContent, Stepper, StepButton } from '@material-ui/core/'
|
import { Typography, Paper, Button, Step, StepLabel, StepContent, Stepper, StepButton } from '@material-ui/core/'
|
||||||
import { CheckCircle, Error, Sync, ExpandLessSharp, ExpandMoreSharp, Autorenew } from '@material-ui/icons/'
|
import { CheckCircle, Error, ExpandLessSharp, ExpandMoreSharp, Autorenew } from '@material-ui/icons/'
|
||||||
|
|
||||||
import DebugConnectionCheck from './SetupSteps/DebugConnectionCheck'
|
import DebugConnectionCheck from './SetupSteps/DebugConnectionCheck'
|
||||||
import NodeConnectionCheck from './SetupSteps/NodeConnectionCheck'
|
import NodeConnectionCheck from './SetupSteps/NodeConnectionCheck'
|
||||||
@@ -122,12 +122,6 @@ export default function NodeSetupWorkflow(): ReactElement {
|
|||||||
<Paper className={classes.root}>
|
<Paper className={classes.root}>
|
||||||
<Typography variant="h5" gutterBottom>
|
<Typography variant="h5" gutterBottom>
|
||||||
Node Setup
|
Node Setup
|
||||||
<span style={{ marginLeft: '25px' }}>
|
|
||||||
<Button variant="outlined" size="small" onClick={() => window.location.reload()}>
|
|
||||||
<Sync />
|
|
||||||
<span style={{ marginLeft: '7px' }}>Refresh Checks</span>
|
|
||||||
</Button>
|
|
||||||
</span>
|
|
||||||
</Typography>
|
</Typography>
|
||||||
<Stepper nonLinear activeStep={activeStep} orientation="vertical">
|
<Stepper nonLinear activeStep={activeStep} orientation="vertical">
|
||||||
{steps.map(({ label, isOk, component }, index) => (
|
{steps.map(({ label, isOk, component }, index) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user