Mesqalito
Results
2
comments of
Mesqalito
You should probably use `.babelrc.js` and provide conditional config: ``` module.exports = api => ({ // ... plugins: [ ...api.env('test') ? ['babel-plugin-rewire'] : [] ] }); ``` This way rewire...
@gustavovnicius It's a common mistake when using React. The form is being reset because your `initialValues` have actually **changed** during render due to a fact that it's an object literal...