From 042b74a47a181740e82716c994ef5bf929597f1e Mon Sep 17 00:00:00 2001 From: Gerard Soldevila Date: Tue, 28 Jun 2022 11:07:17 +0200 Subject: [PATCH] Add simple comment --- src/plugins/telemetry/server/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/telemetry/server/plugin.ts b/src/plugins/telemetry/server/plugin.ts index 8890aa94690fe8..f26644d165f63c 100644 --- a/src/plugins/telemetry/server/plugin.ts +++ b/src/plugins/telemetry/server/plugin.ts @@ -133,7 +133,7 @@ export class TelemetryPlugin implements Plugin this.getOptInStatus()), - startWith(this.isOptedIn), + startWith(this.isOptedIn), // feed the initial config value to the pipeline filter((isOptedIn): isOptedIn is boolean => typeof isOptedIn === 'boolean'), distinctUntilChanged(), tap((optedIn) => (this.isOptedIn = optedIn)),