fateh999 / react-native-paper-form-builder

React Native Paper Form Builder with inbuilt Validation, dropdown, autocomplete, checkbox, switch and radio inputs.
MIT License
113 stars 24 forks source link

Maximum call stack size exceeded #21

Closed pushpanathank closed 3 years ago

pushpanathank commented 3 years ago

image When I use "type: 'input'" and type something on the text box, I am getting error "Maximum call stack size exceeded"

formConfigArray={[
            {
              type: 'input',

              name: 'email',

              label: 'Email',

              rules: {
                required: {
                  value: true,

                  message: 'Email is required',
                },
              },

              textInputProps: {
                keyboardType: 'email-address',

                autoCapitalize: 'none',
              },
            },
]};

could you help me to avoid this error.

fateh999 commented 3 years ago

Can you check it with latest version