We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a9a15 commit 85e581eCopy full SHA for 85e581e
src/performance/performance.ts
@@ -36,10 +36,10 @@ export class AngularFirePerformance {
36
tap(perf => perf.registerPerformance && perf.registerPerformance(firebase as any)),
37
map(() => zone.runOutsideAngular(() => app.performance())),
38
tap(performance => {
39
- if (instrumentationEnabled !== true) {
+ if (instrumentationEnabled === false) {
40
performance.instrumentationEnabled = false;
41
}
42
- if (dataCollectionEnabled !== true) {
+ if (dataCollectionEnabled === false) {
43
performance.dataCollectionEnabled = false;
44
45
}),
0 commit comments