diff --git a/src/utils/api-utils.js b/src/utils/api-utils.js index d05c7bc..e63462d 100644 --- a/src/utils/api-utils.js +++ b/src/utils/api-utils.js @@ -9,7 +9,7 @@ export const fetcher = async (url) => { if (!response.ok) { throw new Error(`HTTP error! Status: ${response.status}`); } - return await response.json(); + return response.json(); }; const controller = new AbortController();