Skip to content

Commit abeda9a

Browse files
committed
fix for undefined appId
1 parent 042331b commit abeda9a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "klepper",
3-
"version": "0.0.43-alpha",
3+
"version": "0.0.45-alpha",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/node/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ export const connect = (
3939
}
4040

4141
if (!isClientConnected()) {
42-
setGlobalClientData({ privateKey: options.privateKey });
42+
setGlobalClientData({ privateKey: options?.privateKey, appId: options?.appId });
4343
}
4444
};

0 commit comments

Comments
 (0)