Skip to content

Commit 000dfbd

Browse files
committed
ClientEntity fix
1 parent 6feb546 commit 000dfbd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

packages/sdk/browser/contract-tests/entity/src/ClientEntity.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}),

0 commit comments

Comments
 (0)