fix: removed blocking fetch responses if not ok
This commit is contained in:
parent
6dc73ac69e
commit
f13f643baa
@ -6,14 +6,10 @@ export function fetchData(key, data = {}, method = 'GET') {
|
||||
})
|
||||
|
||||
return fetch(url.href, { method })
|
||||
.then(response => {
|
||||
if (!response.ok) {
|
||||
throw new Error('Network response was not ok')
|
||||
}
|
||||
return response.json()
|
||||
})
|
||||
.then(response => response.json())
|
||||
.catch(error => {
|
||||
console.error('There has been a problem with your fetch operation:', error)
|
||||
return Promise.reject(error)
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user