fix: removed blocking fetch responses if not ok

This commit is contained in:
Roberto Tonino 2021-06-02 15:32:20 +02:00
parent 6dc73ac69e
commit f13f643baa
1 changed files with 2 additions and 6 deletions

View File

@ -6,14 +6,10 @@ export function fetchData(key, data = {}, method = 'GET') {
}) })
return fetch(url.href, { method }) return fetch(url.href, { method })
.then(response => { .then(response => response.json())
if (!response.ok) {
throw new Error('Network response was not ok')
}
return response.json()
})
.catch(error => { .catch(error => {
console.error('There has been a problem with your fetch operation:', error) console.error('There has been a problem with your fetch operation:', error)
return Promise.reject(error)
}) })
} }