diff --git a/content/blog/angular-extend-class/index.md b/content/blog/angular-extend-class/index.md index e7ba1c76..04171001 100644 --- a/content/blog/angular-extend-class/index.md +++ b/content/blog/angular-extend-class/index.md @@ -959,11 +959,11 @@ class WindowSizeService { height: window.innerHeight, width: window.innerWidth, })), - takeUntil(this.destroy$), startWith({ height: window.innerHeight, width: window.innerWidth, - }) + }), + takeUntil(this.destroy$) ); }