pieterh
pieterh
I seem to able to fix it by changing config.headers.Authorization = `Bearer ${token}`; to (config.headers as AxiosHeaders).set("Authorization", `Bearer ${token}`); possibly you need to import the AxiosHeaders import {AxiosHeaders } from...
Hi, did you try the workaround I mentioned earlier? It works for 1.2.2 Using the workaround would release the pressure on this problem. At least you can continue while the...
I think that casting to AxiosHeaders and using 'set', is a much better and sustainable solution then suppressing an unspecified error on the next line. If in the future the...
Interesting insight. Thanks. The casting is indeed a temp solution.
Also would like to know this. A week or two ago, only one function in one env was on the new runtime, but now they are all on the new...