hey <@!877216410391150592> , 1) That shouldn't be ...
# support-questions
r
hey @User , 1) That shouldn't be happening.. is there a way I can see your frontend code to help debug this? 2) Yes you can disable fetch interceptor like this:
Copy code
supertokens.init({
    apiDomain: "...",
    override: {
        functions: (oI) => {
            return {
                ...oI,
                addFetchInterceptorsAndReturnModifiedFetch: (originalFetch, config) => {
                    return originalFetch;
                }
            }
        }
    },
});
4 Views