JaceHensley

Results 22 comments of JaceHensley

I'd say a little over a dozen. I'll check that flag out thanks!

So I get a different error when I do that. During build (within `node_modules/prerender-loader`) I get the following: ``` yarn build 23s 883ms yarn run v1.7.0 $ microbundle -f cjs...

Yes I am using that plugin right afterwards. I have the project setup via create-react-app and it has been exported. Could this be do to using `webpack` 3.X and `html-webpack-plugin`...

Yes, after I do `yarn && yarn build` within `node_nodules/prerender-loader/dist`

Would the operations be able to be chained? I read that there can only be [one operation per DID per batch](https://github.com/decentralized-identity/sidetree/blob/master/docs/protocol.md#one-operation-per-did-per-batch). But since this isn't a batch exactly I wasn't...

I haven't tried that cause the docs said runValidation didn't run the validation for each individual field just the form level validation

I think that's what formik is doing, cause their [`validateForm`](https://jaredpalmer.com/formik/docs/api/formik#validateform-values-any-promise-formikerrors-values) function (which is the equivalent to `runValidation`) always returns a promise that needs to be `await`-ed. I don't think that's...

Ah okay I didn't realize they were planning on removing it. If you need any help with the effort let me, happy to help :)

I was able to sort of get around this by setting `validatePristine: true` in `useField`, and then I disable the "Next" button when `useForm`'s `canSubmit` is false. So this would...