limpiar strings

This commit is contained in:
Eduardo Quiros 2022-08-22 04:22:31 -06:00
parent 7d0bf63b22
commit 19620aabcc
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
1 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ const GuardasSeguridad = () => {
} }
}).then((response) => { }).then((response) => {
if (response.status != 201) if (response.status != 201)
console.log('Ocurrió un error con el servicio: ' + response.status); console.log(`Ocurrió un error con el servicio: ${response.status}`);
else else
return response.json(); return response.json();
}).then(() => { }).then(() => {
@ -121,10 +121,10 @@ const GuardasSeguridad = () => {
} }
}).then((response) => { }).then((response) => {
if (response.status != 201) if (response.status != 201)
console.log('Ocurrió un error con el servicio: ' + response.status); console.log(`Ocurrió un error con el servicio: ${response.status}`);
else else
return response.json(); return response.json();
}).then((response) => { }).then(() => {
setChangeStatusGuardDialog(false); setChangeStatusGuardDialog(false);
toast.current.show({ toast.current.show({
severity: 'success', severity: 'success',
@ -147,7 +147,7 @@ const GuardasSeguridad = () => {
} }
}).then((response) => { }).then((response) => {
if (response.status != 201) if (response.status != 201)
console.log('Ocurrió un error con el servicio: ' + response.status); console.log(`Ocurrió un error con el servicio: ${response.status}`);
else else
return response.json(); return response.json();
}).then(function() { }).then(function() {