forked from p15670423/monkey
UI: Pass 'Content-Type' header in PUT request when resetting Island mode
This commit is contained in:
parent
c098afaee1
commit
f652a489b7
|
@ -113,7 +113,14 @@ const IslandResetModal = (props: Props) => {
|
|||
}})
|
||||
.then(res => {
|
||||
if (res.ok) {
|
||||
return auth.authFetch('/api/island/mode', {method: 'PUT', body: '"unset"'})
|
||||
return auth.authFetch(
|
||||
'/api/island/mode',
|
||||
{
|
||||
method: 'PUT',
|
||||
headers: {'Content-Type': 'application/json'},
|
||||
body: '"unset"'
|
||||
}
|
||||
)
|
||||
}})
|
||||
.then(res => {
|
||||
if (!res.ok) {
|
||||
|
|
Loading…
Reference in New Issue