jcollum-nike

Results 2 comments of jcollum-nike

Likewise ``` 'jsx-a11y/label-has-associated-control': [ 'error', { labelComponents: ['Label'], labelAttributes: ['for'], controlComponents: ['Input'], depth: 4 }, ], ``` ` "eslint-plugin-jsx-a11y": "~6.2.1",` Offending code: ``` import Label from './Label'; import Input from...

Our control (for some reason) was taking in `for` but passing that value to `htmlFor`. I changed that but it didn't fix the issue. I did fix it though: `render();`...