handlebauer

Results 7 comments of handlebauer

The solution to this is definitely a bit annoying but it's not particularly cumbersome; to expand on @romeobalta's point: ```javascript handleSubmit = event => { event.preventDefault() if (this.form.getChildContext()._errors.length === 0)...

`_setErrors` is the culprit — it's called at the tail end of `_handleChange` et al., and (from what I can tell) `_setErrors` just does a blind sweep through ALL of...

It's easy enough to wrap your own `` using the `control` HOC but +1 to `React.Fragment` being applied by default

FWIW, if the outputted grammar file has a .cjs extension, you can import as usual from an ES module: > package.json >```json >"scripts": { > "compile": "nearleyc grammar.ne -o grammar.cjs"...

I've run into this issue as well, although using node's native fetch. Interestingly, it was only `json()` in conjunction `clone()` I was running into problems with (`text()` worked fine 🤷‍♂️)...