James Howard
James Howard
I think it's a colour profile issue. On OSX I have changed mine to different settings and get different colours in the screenshots. It could be that your snapshots were...
Safari 7 has an issue with the CSS hack to remove whitespace between grid items. The author makes no promises that would work forever - looks like it wont.
I solved this a different way, when I realised that the saga is calling a function to create the selector so it should be a `call` effect. ``` const stuffSelector...
It looks like this is fixed in Chrome 106. I updated and now can't recreate sending errors to Sentry from the dev tools console.
3.3.4 has an issue for our project too. The [change](https://github.com/Bttstrp/bootstrap-switch/commit/52c1260130b589e7875c3ac55c4f0a5b51a06650) to `display: table-cell` and `vertical-align: middle` on the handles and label meant that even though the width was being calculated...
3.3.4 has an issue for our project too. The [change](https://github.com/Bttstrp/bootstrap-switch/commit/52c1260130b589e7875c3ac55c4f0a5b51a06650) to `display: table-cell` and `vertical-align: middle` on the handles and label meant that even though the width was being calculated...
I have tried experimenting with storing path/colour/width for all paths in an array and adding them all to the context in drawRect. Each touchesEnded pushes the current path onto the...
Thanks for the quick reply. I think for now our workaround is just to disable the plugin when we're running the bundle analysis script. The `disable` option of the plugin...
Since the two don't really need to operate together, I'll stick with my workaround of disabling the Sentry plugin when running the analysis script. ```json "scripts": { "preanalyze": "DISABLE_SENTRY_PLUGIN=true webpack...
I had the same error but it was because I already had something else running on the same port. I guess `server.address()` is `null` at this line if the `server.listen`...