Felipe Reis
Felipe Reis
Hi @timbotnik Let's say we have a deprecation policy which states that fields cannot be removed at all from the schema. Once they have been added and published to production...
Hi @d3rp3tt3. I'd run this check automatically every time a PR that changes the schema is raised.
The error message goes away when I removed the quotes from the `edit` property. File: TodoTextInput.js:38-42 ``` className={ classnames({ 'edit': this.props.editing, 'new-todo': this.props.newTodo })} ``` After fix: ``` className={ classnames({...