diff --git a/src/hooks.client.ts b/src/hooks.client.ts index 9d4ac94ba..c6404ee81 100644 --- a/src/hooks.client.ts +++ b/src/hooks.client.ts @@ -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;