Matt

Results 20 comments of Matt
trafficstars

This issue isn't present in 3.3.0 either.

They're also blurry on displays where the physical pixel ratio is > 1, which is pretty much every device now.

rich objects have similar positioning issues. eg: `console.log('deep object', { foo: { bar: { baz: 1234, qux: 'ok' }}});`

Getting a white screen of death in the latest chrome with no extensions: (works in incognito though) ``` react-dom.production.min.js:216 Error: The result of this StaticQuery could not be fetched. This...

Same - no issues in brave on my device which previously reliably reproduced the issue.

Sweet. Another idea: Since this runs at the start of every single page load, something like a series of checks sounds best instead of trying to parse the body. Something...

@zwacky The first check will run in constant time, since you're just scanning for `{`

Yes. Please read my original comments @zwacky ``` Of course, my first suggestion as opposed to the suggestion in this comment will yield a much larger performance boost. ```

Ah. I'll elaborate on what's going on here. The `__webpack_require__` is the first pass of all of the JavaScript, since every module is wrapped with `__webpack_require__`. The first pass is...

Great discussion so far. The `schema.graphql` file that I'm mentioning is a compiled asset that combines all types for your GraphQL schema into one file. I agree that any non-trivial...