File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
contract-tests/entity/src Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -156,9 +156,7 @@ export class ClientEntity {
156156 if ( ! identifyParams ) {
157157 throw malformedCommand ;
158158 }
159- await this . client . identify ( identifyParams . user || identifyParams . context , {
160- waitForNetworkResults : true ,
161- } ) ;
159+ await this . client . identify ( identifyParams . user || identifyParams . context ) ;
162160 return undefined ;
163161 }
164162
@@ -204,7 +202,7 @@ export async function newSdkClientEntity(options: CreateInstanceParams) {
204202 let failed = false ;
205203 try {
206204 await Promise . race ( [
207- client . identify ( initialContext , { waitForNetworkResults : true } ) ,
205+ client . identify ( initialContext ) ,
208206 new Promise ( ( _resolve , reject ) => {
209207 setTimeout ( reject , timeout ) ;
210208 } ) ,
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import {
1212 LDEmitter ,
1313 LDEmitterEventName ,
1414 LDHeaders ,
15- LDIdentifyOptions ,
1615 Platform ,
1716} from '@launchdarkly/js-client-sdk-common' ;
1817
You can’t perform that action at this time.
0 commit comments