UI: Add missing semicolons

This commit is contained in:
Mike Salvatore 2022-07-01 08:55:57 -04:00
parent ddc3f2012d
commit 05129c9d6b
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ const IslandResetModal = (props: Props) => {
auth.authFetch('/api/clear-simulation-data', {method: 'POST'})
.then(res => {
if (res.status === 200) {
callback()
callback();
}
})
}
@ -107,7 +107,7 @@ const IslandResetModal = (props: Props) => {
auth.authFetch('/api/island-mode', {method: 'POST', body: '{"mode": "unset"}'})
.then(res => {
if (res.status === 200) {
callback()
callback();
}
})
}