Skip to content

Commit 7771ace

Browse files
authored
Use right class for static initialization check (#216)
use right class for static check
1 parent d3c0a56 commit 7771ace

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eppo/js-client-sdk",
3-
"version": "3.16.0",
3+
"version": "3.16.1",
44
"description": "Eppo SDK for client-side JavaScript applications",
55
"main": "dist/index.js",
66
"files": [

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ export class EppoPrecomputedJSClient extends EppoPrecomputedClient {
750750
}
751751

752752
private static getAssignmentInitializationCheck() {
753-
if (!EppoJSClient.initialized) {
753+
if (!EppoPrecomputedJSClient.initialized) {
754754
applicationLogger.warn('Eppo SDK assignment requested before init() completed');
755755
}
756756
}

0 commit comments

Comments
 (0)