Tom Fenech
Tom Fenech
The issue is https://github.com/jaredpalmer/formik/blob/master/src/types.tsx#L89 ```typescript setFieldValue(field: keyof Values & string, value: any, shouldValidate?: boolean): void; ``` `keyof Values` only includes top-level properties, so cannot be used for any nested structures....
Nice catch! I was struggling to get this to work behind a reverse proxy until I found this. Since we want to just use the same protocol, domain and port...
@dsawa No, I couldn't find a way to persist the state between tasks runs using this image. In the end I decided to change my approach: instead of using this...
@tger I am also interested in this feature - it would be great to see what you have got so far and work on getting it merged.
I've been looking into this some more, I'm not sure that it can be achieved without making modifications to the way the auth module works. The login flow I'd like...
In the end I made this project, which wraps some middleware around the `auth` module to make the extra calls. https://github.com/nbycomp/login-consent
I was thinking about how to do this and I came up with the following idea: - add an optional parameter to pass a private key (something like `SSH_KEY`) -...
It would be great to get this merged, as it would mean that the library could be used with hooks inside functional components! ```ts function useChart(initialState: IChart): [IChart, typeof actions]...
@silviuavram the error is there, it says `Types of property 'ref' are incompatible.` (the second line of the error message in my original post). I included one custom prop `onKeyUp`...
I guess you gave up waiting a while ago :stuck_out_tongue:, but I just ran into this too. In case it's useful to others, my workaround was to use a `load_var`...