Uncaught TypeError: cannot set property valid for # <ReduxForm> that only getter has
I am trying to insert a reduction form in my project but I am getting this error. Does anyone know what the problem is.
What I have done so far is that when I add the following code snippet, it starts returning this error to me - "Uncaught TypeError: cannot set the property valid for #, which has only getter".
LoginForm = reduxForm({
// a unique name for the form
form: 'login',
})(LoginForm);
+4