refactor(examples): minor tweak (#5017)

This commit is contained in:
pouria azad
2024-05-10 06:30:20 +03:30
committed by GitHub
parent 239a2a82d0
commit 89c4c7eb47

View File

@@ -50,7 +50,7 @@ export class TodoStore {
}
removeCompleted() {
this.todos = this.getWithCompleted(false);
this.todos = this.getRemaining();
this.updateStore();
}