Remove debug fetch

This commit is contained in:
ernstmul
2024-10-28 08:26:12 +01:00
parent 9f39892122
commit fd45da45cd
-9
View File
@@ -25,12 +25,3 @@ export const handleError: HandleClientError = Sentry.handleErrorWithSentry(
};
}
);
const originalFetch = window.fetch;
const customFetch = async (input, init = {}) => {
init.credentials = 'include';
console.log('adjusted => ', input);
return originalFetch(input, init);
};
window.fetch = customFetch;