Skip to content

Commit da06ce4

Browse files
chore(lint): Fix remaining lint errors
1 parent 4890bcb commit da06ce4

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/analytics/analytics.service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ export class ScreenTrackingService implements OnDestroy {
158158
}
159159
}),
160160
groupBy(params => params[OUTLET_KEY]),
161+
// tslint:disable-next-line
161162
mergeMap(group => group.pipe(startWith(undefined), pairwise())),
162163
map(([prior, current]) => prior ? {
163164
[FIREBASE_PREVIOUS_SCREEN_CLASS_KEY]: prior[SCREEN_CLASS_KEY],

src/messaging/messaging.ts

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export class AngularFireMessaging {
4949

5050
this.requestPermission = messaging.pipe(
5151
observeOn(schedulers.outsideAngular),
52+
// tslint:disable-next-line
5253
switchMap(messaging => messaging.requestPermission())
5354
);
5455

src/remote-config/remote-config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ export class AngularFireRemoteConfig {
152152
rc.defaultConfig = defaultConfig;
153153
}
154154
}),
155+
// tslint:disable-next-line
155156
startWith(undefined),
156157
shareReplay({ bufferSize: 1, refCount: false })
157158
);

0 commit comments

Comments
 (0)