Israel kusayev

Results 14 comments of Israel kusayev

Also accessing process.env by variable is not working which is very strange AndI it is very problematic since it works with create-react-app so our code access process.env[someEnv] in many places...

I would suggest using something like the image below rather than a second-row header ![image](https://user-images.githubusercontent.com/42112796/188902125-5bb7a2a8-765b-48e0-89f4-e3ea32e0d566.png)

![image](https://user-images.githubusercontent.com/42112796/97785960-e8de2a00-1bb0-11eb-834e-c3753071914d.png) I also see only one request after refreshToken success I'm using axios-auth-refresh 3.0.0 and axios version 0.21.0

I think it was because I set `pauseInstanceWhileRefreshing` to true but if I remove it, the second request is sent with the old token ![image](https://user-images.githubusercontent.com/42112796/97786069-a36e2c80-1bb1-11eb-867b-2d90abbb012b.png)

here is my implemention ```typescript axios.interceptors.request.use(config => { if (config.method === 'POST' || config.method === 'PATCH' || config.method === 'PUT') config.headers['Content-Type'] = 'application/json;charset=utf-8'; const accessToken = AuthService.getAccessToken(); if (accessToken &&...

I see this is an issue with typescript https://github.com/microsoft/TypeScript/issues/15300 If I convert `Filters` from interface to type, its working, But maybe recoil can change its types to support interface as...

I tried to replace ```typescript export type SerializableParam = Primitive | ReadonlyArray | Readonly; ``` With ```typescript export type SerializableParam = Primitive | ReadonlyArray | Readonly; ``` And it solves...