Ramon Zuniga
Results
4
comments of
Ramon Zuniga
Yes it does get called 2 times when I tried but sometimes the button displayed just once and the function got called twice. I just update the scope when the...
Appreciate!
You'll have to handle the DELETE request. Edit your `config.js` from mirage folder to this: ``` this.del('/todos/:id', function(db, request) { let id = request.params.id; db.todos.remove(id); return new Mirage.Response(204, {}, {});...