forked from p15670423/monkey
UI: Add missing semicolons
This commit is contained in:
parent
ddc3f2012d
commit
05129c9d6b
|
@ -93,7 +93,7 @@ const IslandResetModal = (props: Props) => {
|
||||||
auth.authFetch('/api/clear-simulation-data', {method: 'POST'})
|
auth.authFetch('/api/clear-simulation-data', {method: 'POST'})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
callback()
|
callback();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -107,7 +107,7 @@ const IslandResetModal = (props: Props) => {
|
||||||
auth.authFetch('/api/island-mode', {method: 'POST', body: '{"mode": "unset"}'})
|
auth.authFetch('/api/island-mode', {method: 'POST', body: '{"mode": "unset"}'})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
callback()
|
callback();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue