Skip to content

Commit 32d2bf9

Browse files
committed
traceComplete has to be after .first
1 parent faa5bd2 commit 32d2bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/performance/performance.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export class AngularFirePerformance {
3737

3838
// TODO determine more built in metrics
3939
appRef.isStable.pipe(
40-
this.traceUntilComplete('isStable'),
41-
first(it => it)
40+
first(it => it),
41+
this.traceUntilComplete('isStable')
4242
).subscribe();
4343

4444
}

0 commit comments

Comments
 (0)