Max Cherniavskyi

Results 3 issues of Max Cherniavskyi

`setState` inside a timeout callback does not mutate the state. Encountered in IE10 and IE11. ```javascript componentDidMount() { setTimeout(_ => this.setState({param: true}), 1000); } ``` When I switched to the...

On the page https://github.com/greggman/webgl2-fundamentals/blob/master/webgl/lessons/webgl-2d-matrices.md the rotation matrix generator is incorrectly defined as: ```javascript rotation: function(angleInRadians) { var c = Math.cos(angleInRadians); var s = Math.sin(angleInRadians); return [ c,-s, 0, s, c,...

## Summary A combination of suspense, client context and zustand causes a server-client mismatch error. If suspense is removed, the behaviour is as expected. The app structure overview: ``` :...