Removing send ether button
This commit is contained in:
parent
a27d230c4c
commit
a29564593d
File diff suppressed because it is too large
Load Diff
|
@ -254,7 +254,7 @@ class Status extends Component {
|
|||
<Typography variant="display1">
|
||||
Relayer
|
||||
</Typography>
|
||||
{ isDev && <Button className={classes.button} color="primary" aria-label="Add ether" onClick={this.sendEther} disabled={submitState.etherSend}>
|
||||
{ false && isDev && <Button className={classes.button} color="primary" aria-label="Add ether" onClick={this.sendEther} disabled={submitState.etherSend}>
|
||||
<AddIcon className={classes.icon} />
|
||||
Send ether
|
||||
</Button> }
|
||||
|
|
|
@ -263,7 +263,7 @@ class Status extends Component {
|
|||
<Typography variant="display1">
|
||||
Relayer
|
||||
</Typography>
|
||||
{ isDev && <Button className={classes.button} color="primary" aria-label="Add ether" onClick={this.sendEther} disabled={submitState.etherSend}>
|
||||
{ false && isDev && <Button className={classes.button} color="primary" aria-label="Add ether" onClick={this.sendEther} disabled={submitState.etherSend}>
|
||||
<AddIcon className={classes.icon} />
|
||||
Send ether
|
||||
</Button> }
|
||||
|
|
Loading…
Reference in New Issue