Skip to content

Commit 2f3c535

Browse files
committed
Merge pull request reduxjs#224 from taylorhakes/broken-todo-lint
Fixed broken todomvc lint
2 parents be5f3c4 + bc62041 commit 2f3c535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/todomvc/components/TodoItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default class TodoItem extends Component {
3131
}
3232

3333
render() {
34-
const {todo, markTodo, deleteTodo, editTodo} = this.props;
34+
const {todo, markTodo, deleteTodo} = this.props;
3535

3636
let element;
3737
if (this.state.editing) {

0 commit comments

Comments
 (0)