fix: the takeUntil operator must be last

This commit is contained in:
Lars Gyrup Brink Nielsen
2022-08-21 20:20:29 +02:00
parent 5412c11677
commit 1b46f40fcd

View File

@@ -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$)
);
}