Chris Weber

Results 5 comments of Chris Weber

This might be related to https://github.com/axios/axios/issues/5031

Others like AxiosProgressEvent seem to be fine As a workaround for now I used axios.AxiosError, so for example: ```typescript if (error instanceof axios.AxiosError) { ``` got the idea from this...

@o-alexandrov I saw few days ago that the Chakra UI team noted in their 3.0 roadmap that they want to remove the framer motion dependency: > Remove dependency on framer-motion:...

here is another ticket about the same problem: https://github.com/vercel/next.js/issues/44424 and it has a PR https://github.com/vercel/next.js/pull/44426

@DanielOberlechner there are many duplicate tickets for this problem already, like: you are probably using getInitialProps, here is what the [nextjs getInitialProps documentation](https://nextjs.org/docs/api-reference/data-fetching/get-initial-props) page says: > If you are using...