We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
React-toggle used with Redux Form keeps throwing this error:
Invariant Violation: View config not found for name input, even though props successfully passes 'name' to the Form via my Component.
This is the snapshot of the Component:
const { id, input: { name, onChange, value }, meta: { touched, error, warning } } = this.props; return ( <View> <Toggle name={name} value={value} id={id} checked={true} value="yes" onChange={onChange} icons={false} disabled={false} /> </View> ); }``` And I pass the component into Redux Form: ```<View> <Field component={ToggleInput} name="gender" id="id"/> </View>```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
React-toggle used with Redux Form keeps throwing this error:
This is the snapshot of the Component:
The text was updated successfully, but these errors were encountered: