You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a proactive measure, the callback provided to `useGqlError` is **only executed on client-side**. This is to prevent unwarranted side-effects as well as to allow nuxt context reliant calls such as [useState](https://v3.nuxtjs.org/api/composables/use-state), [useRoute](https://v3.nuxtjs.org/api/composables/use-route), [useCookie](https://v3.nuxtjs.org/api/composables/use-cookie) and other internal Nuxt 3 composables to be made, as this isn't currently possible on server-side due to a vue 3 limitation where context is lost after the first `awaited` call.
0 commit comments