Shawn Gustaw
Shawn Gustaw
@Rudeg could you publish a new version to npm? Would be super grateful if so :)
@iMerica can you enable issues on the forked repo? If we can get enough eyes on it we should reach out to Tom to point the docs at your fork...
This is kind of a hack but you can use something like this: ``` function useDelayedIsMounted(timeout = 0) { const [isMounted, setIsMounted] = useState(false); useEffect(() => { setTimeout(() => {...
I'm experiencing this with `router.replace` as well when the `pathname` is the same as the current url. I'm basically just using it to update the query parameters for the current...
It seems to go away if you add `{ shallow: true }` to `router.replace`. I still get this error popping up but it doesn't break the page: `Error: Loading initial...
I may have a fix for this here if someone can test/verify: https://github.com/awslabs/aws-mobile-appsync-sdk-js/pull/747
@emolr thank you soooooo soooo much for your solution 🙏
Anyone have any ideas? I'm hitting this using Next with strict mode turned off. I managed to temporarily work around this by delaying setting up the subscription using a `setTimeout(()...
@heanfig could you test/verify this PR to fix this? https://github.com/awslabs/aws-mobile-appsync-sdk-js/pull/747. To build I had to add `types: []` to the `tsconfig.json` but then you can run `yarn prepare && yarn...
> @omerson can you elaborate on how this fixed your problem? Do you have a code example? I am facing the same issue today. I believe this happens specifically during...