File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff 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
2424import { 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
Original file line number Diff line number Diff line change 11import { Hook , LDPlugin as LDPluginBase } from '@launchdarkly/js-client-sdk-common' ;
2+
23import { LDClient } from './LDClient' ;
34
45/**
You can’t perform that action at this time.
0 commit comments