Skip to content

Commit a45f0c2

Browse files
committed
chore: fixing lint issues
1 parent fc458c5 commit a45f0c2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

packages/sdk/browser/src/BrowserClient.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
LDPluginEnvironmentMetadata,
1919
LDTimeoutError,
2020
Platform,
21-
safeRegisterDebugOverridePlugins
21+
safeRegisterDebugOverridePlugins,
2222
} from '@launchdarkly/js-client-sdk-common';
2323

2424
import { readFlagsFromBootstrap } from './bootstrap';
@@ -214,9 +214,9 @@ class BrowserClientImpl extends LDClientImpl {
214214
this._plugins || [],
215215
);
216216

217-
const override = this.getDebugOverrides()
217+
const override = this.getDebugOverrides();
218218
if (override) {
219-
safeRegisterDebugOverridePlugins(this.logger, override, this._plugins || [])
219+
safeRegisterDebugOverridePlugins(this.logger, override, this._plugins || []);
220220
}
221221
}
222222

packages/sdk/browser/src/LDPlugin.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Hook, LDPlugin as LDPluginBase } from '@launchdarkly/js-client-sdk-common';
2+
23
import { LDClient } from './LDClient';
34

45
/**

0 commit comments

Comments
 (0)