gtournie

Results 10 comments of gtournie

@calfzhou I had the same problem. `sudo diskutil umount force [path]` worked for me

have you checked the [conditional validations](https://github.com/gtournie/redux-form-validators#conditional-validation)? You can check the args passed by `if` and `unless`. I think the third arg should be `meta` with Final Form.

As `import $ from 'expose?$!expose?jQuery!jquery';` doesn't work anymore, I added these lines: ``` window.$ = $; window.jQuery = $; ``` Waiting for a patch.

For now, here is my (ugly) workaround: ```javascript const intl = useIntl() useEffect(() => { function replaceFBLocale() { const fbIframes = document.querySelectorAll("iframe[src*=facebook]") fbIframes.forEach((fbIframe) => { fbIframe.src = fbIframe.src.replace(/&locale=[a-zA-Z_]+/, "&locale=" +...

you can also just replace the `requireSignIn` function by this one: ```js import React, { useEffect } from 'react' import { compose } from 'redux' import { connect } from...

Ok, got it! =) Seems that in socket.io (/usr/local/lib/node_modules/juggernaut/node_modules/socket.io/lib/manager.js) var defaultTransports didn't include 'flashsocket'... I added it and it finally works..!

Why not using a `fieldset` at the top level? You can disabled all the fields inside doing just `` https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset#Attributes

I want a number as param. Though, if someone gives me the wrong data, like a non-numeric string, I want typebox to return me the right error. The message I...