diff --git a/tutorial/simple-todos/03-forms-and-events.md b/tutorial/simple-todos/03-forms-and-events.md index 15139f7..4c267a2 100644 --- a/tutorial/simple-todos/03-forms-and-events.md +++ b/tutorial/simple-todos/03-forms-and-events.md @@ -73,7 +73,7 @@ Now we need to add a listener to the `submit` event on the form: ```js ... tasks() { - return TasksCollection.find({}, { sort: { createdAt: -1 } }); + return TasksCollection.find({}); }, });