forked from p15670423/monkey
UI: Remove unneeded argument in MapPage.js
This commit is contained in:
parent
a43c1479c8
commit
85b866e1cb
monkey/monkey_island/cc/ui/src/components/pages
|
@ -92,7 +92,7 @@ class MapPageComponent extends AuthComponent {
|
||||||
body: JSON.stringify({kill_time: Date.now() / 1000.0})
|
body: JSON.stringify({kill_time: Date.now() / 1000.0})
|
||||||
})
|
})
|
||||||
.then(res => res.json())
|
.then(res => res.json())
|
||||||
.then(_res => {this.setState({killPressed: true})});
|
.then(() => {this.setState({killPressed: true})});
|
||||||
};
|
};
|
||||||
|
|
||||||
renderKillDialogModal = () => {
|
renderKillDialogModal = () => {
|
||||||
|
|
Loading…
Reference in New Issue