Aziz Khambati

Results 27 comments of Aziz Khambati

Can we have some of the amazing famous speakers to make a video like this: https://www.youtube.com/watch?v=uE7pr-iq3d0 Which can be played before every conference that we are creating a safe space...

Getting this error in React Native as well. react: "16.11.0" react-native: "0.62.2" Based on my understanding of this [reddit comment](https://www.reddit.com/r/reactjs/comments/fi39sm/thissetstate_in_componentdidmount_is_this_not/fknienc/). I think if user land code throws an error in...

@aweary Can we add some more diagnostic info, like what component React is working on, maybe that might give us some information on where to concentrate. Right now, we are...

@cristianoccazinsp I've created an issue on react-native repo as well, because its a different renderer: https://github.com/facebook/react-native/issues/28948 Please do subscribe there as well.

Hi @acdlite (sorry for tagging you here), Just wanted to know what React features would trigger the usage of `unstable_runWithPriority`. Maybe that might help in figuring out what is causing...

We are facing similar issue: Can tsdx allow us a way to change the `external`s functions. https://github.com/palmerhq/tsdx/blob/73b152eca021ab4897efa92d8ec3abb893fc8b96/src/utils.ts#L21-L22

I think this should get fixed by #183 by creating a tsdx.config.js ```js // tsdx.config.js module.exports = { rollup(config, options) { config.external = (id) => false; return config; } }...

So I realized that our problem would also occur for `installing` service workers as well. I wrote some tests but I am having some problems getting them working on all...

Well I don't necessarily need to trigger `installing`. I just added it to keep parity with `waiting`. But I would like to add `statechange` listener on the `installingSW`. This is...

Also I've add `statechange` listeners on both `waiting` & `installing` SWs if both exist. I think we should add them on all `this._ownSWs` that you are adding in #2211 [diff](https://github.com/GoogleChrome/workbox/pull/2211/files#diff-3c13b193f7b64e2ef506486a17173077R58)