Skip to content

Commit 92105be

Browse files
committed
lint fixes
1 parent 3da4ab2 commit 92105be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/todos-with-undo/components/AddTodo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default class AddTodo extends Component {
55
e.preventDefault();
66
const node = this.refs.input;
77
const text = node.value.trim();
8-
if(text){
8+
if (text) {
99
this.props.onAddSubmit(text);
1010
node.value = '';
1111
}

0 commit comments

Comments
 (0)