From 89c4c7eb47468e7ee19c2ee36463b2df48986c08 Mon Sep 17 00:00:00 2001 From: pouria azad <109802957+pouria-azad@users.noreply.github.com> Date: Fri, 10 May 2024 06:30:20 +0330 Subject: [PATCH] refactor(examples): minor tweak (#5017) --- examples/angular-todomvc/src/app/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/angular-todomvc/src/app/store.ts b/examples/angular-todomvc/src/app/store.ts index df2d5bf0bd..2bf431e087 100644 --- a/examples/angular-todomvc/src/app/store.ts +++ b/examples/angular-todomvc/src/app/store.ts @@ -50,7 +50,7 @@ export class TodoStore { } removeCompleted() { - this.todos = this.getWithCompleted(false); + this.todos = this.getRemaining(); this.updateStore(); }