diff --git a/src/utils/api.js b/src/utils/api.js index 1f61d11..c8be5f7 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -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) }) }