Jeff Hansen
Jeff Hansen
@lishaduck can we close this now?
Thank you, James. I've sent you an email with the endpoint.
It sounds like this is related to #2358 then. So the server sends a `GOAWAY`, but the client does not surface this information in the exception that is thrown; is...
The `AppContext` switch works perfectly, thank you! Will this issue remain open until the underlying issues have been fixed? Or how will we be able to track when we can...
@antonfirsov we don't have a direct way to contact Google but we've opened a ticket with DoIT who's our support provider and linked them to this issue, they may be...
@antonfirsov our support rep forwarded the ticket to Google, this is what we got back: > I have reached out regarding this request and it is currently not possible to...
@antonfirsov if you tested it and it works against our reproduction server, and considering how disabling the feature worked for both our repro and the real problem, then I'm confident...
Thanks @mattgperry, that seems to fix all the issues I've been having, except for one: `popLayout` doesn't seem to have any effect. Are there still any gotchas to watch out...
I have a similar issue, although I'm just using regular `useMotionTemplate` + `style` prop on a ``. It seems in strict mode, Motion tries to `set` the underlying motion value...
I have a similar issue. ```tsx export function DocumentTitleProvider({ children, }: DocumentTitleProviderProps) { const [value, set] = useState('') const currentTitleRef = useRef('') const setTitle = useCallback((v: string) => { set(v)...