Bartek
Bartek
I had the same issue and I resolved it by adding: ``` alias: { react: path.resolve('./node_modules/react') } ``` to `resolve` property in webpack config of my main app. It's was...
I totally agree this should be relaxed to be just string - it's nice to have the autocompletion for the simple case (non nested updates) but on the other hand...
I found a workaround which is to create a fake field on the schema and use yups `test` method there. You can get access to other fields by using `this.parent`...
@DeszczMikolaj perhaps my workaround would help you: https://codesandbox.io/s/formik-example-using-when-test-of-yup-ni2yt
Thank you for the this thread, I had a hard time figuring out why the props are undefined :) Could someone explain to me why `ssr: false` actually fixes this?...
For a quick hack you can just manually add superjson like so (until the PR is merged): ``` import { getServerSideProps } from "./getServerSideProps"; import { withSuperJSONPage as _withSuperJSONPage }...
@Skn0tt do you need some help with this one? I would love to see it merged!
> @apieceofbart this PR contains a lot of unrelated changes, which is why I'm not moving forward with it. if you want to work on it, I think it'd be...
@alii I only checked briefly yesterday - tried to be smart and copy your code but without the type changes part. Unfortunately when I did this there were a couple...
@akomm Thank you for your comment - I do not fully understand it but I'll read some more about trpc. From what I understand it uses `getInitialProps` behind the scenes...