Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ class OptimizelyReactSDKClient implements ReactSDKClient {
});

this._client = optimizely.createInstance(configWithClientInfo);
this.isClientReady = !!configWithClientInfo.datafile;
this.isUsingSdkKey = !!configWithClientInfo.sdkKey;

if (this._client) {
Expand All @@ -251,7 +250,6 @@ class OptimizelyReactSDKClient implements ReactSDKClient {
this.isClientReady = clientResult.success;
this.isUserReady = userResult.success;
const clientAndUserReady = this.isClientReady && this.isUserReady;

this.clientAndUserReadyPromiseFulfilled = true;

return {
Expand Down
Loading