Nikita Golubov

Results 14 comments of Nikita Golubov

> Same issue here. What do you mean by doing "dynamic key" to get it working? I'm so desperate to have a quick solution even if not the best decision....

> The errors seem to imply that there are other preceding errors? Are these all that you can see in the console? Yes, that's all the warnings I can see....

Working on it, but tests take too much time and sometimes devices even crash running them so it takes some time. But we'll get there. Is there any particular section...

Here're test results from Samsung Galaxy A8 (issue reproduces on it too): [webgl-conformance-2.0.1.txt](https://github.com/visgl/deck.gl/files/5988670/webgl-conformance-2.0.1.txt)

Here're results from Galaxy A8: * [EXT_color_buffer_float.txt](https://github.com/visgl/deck.gl/files/5994076/EXT_color_buffer_float.txt) * [EXT_float_blend.txt](https://github.com/visgl/deck.gl/files/5994077/EXT_float_blend.txt) * [Blending tests.txt](https://github.com/visgl/deck.gl/files/5994078/Blending.tests.txt) Also Galaxy S20 in browserstack produced same errors

First option would be more desirable as it is hard to determine otherwise which devices need fallback or not (some Samsungs work alright). Also I suppose it may be fixed...

@Pessimistress second option is also ok, if it is faster and easier to implement we could force this mode for all mobile devices while it is not fixed on Samsung/Chromium...

@javiergbas In 6.0.0 you can pass a list of props to ignore. In your case you can pass onEditClick there and action will not be automatically generated for it. https://github.com/storybookjs/addon-smart-knobs#options

another way to solve it is to use the last working version. we are using 0.17.1 for now via npx: ```npx [email protected] changelog --generate ...```

`shouldExtractLiteralValuesFromEnum` currently works only with string unions and enums and leaves other unions as is. To get rid of `| undefined` in optional props you can pass `strict: false` to...