François Cabrol
François Cabrol
I got the same issue and I finally get it work by disabling the rules ``` '@graphql-eslint/require-id-when-available': 'off', '@graphql-eslint/no-unused-fragments': 'off', ```
Looks like some people are running their tests using ubuntu and are happy with https://github.com/ably/ably-flutter/issues/232#issuecomment-1054020409, even if it is slower. Me I would be interested too, because we have a...
for me it works now with "^2.14.1"
Hi I am facing the same issue today, I would like to use a more energy preserved fade in/out (for crossfading). The best for me would be to inject my...
for the record, it is expected to add the statusCode in the fault declaration like this: ``` { Fault: { statusCode: 401, faultcode: 'Client.LoginUnauthorized', faultstring: 'Authentication failed', detail: { ExceptionInfo:...
Also note that if I try to force the app reload with the code after the updateSW() call like: ``` await updateSW() window.location.reload() ``` The app does not reload correctly:...
oh it works if I use ``` await updateSW() setTimeout(() => { window.location.reload() }, 2000) ```