Skip to content

Commit afaaf60

Browse files
Remove implemented getVuid method (#207)
1 parent 4f4f13d commit afaaf60

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/client.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const default_user: UserInfo = {
4949
attributes: {},
5050
};
5151

52-
export interface ReactSDKClient extends Omit<optimizely.Client, 'createUserContext'> {
52+
export interface ReactSDKClient extends Omit<optimizely.Client, 'createUserContext' | 'getVuid'> {
5353
user: UserInfo;
5454

5555
onReady(opts?: { timeout?: number }): Promise<any>;
@@ -1207,11 +1207,6 @@ class OptimizelyReactSDKClient implements ReactSDKClient {
12071207
return this._client.notificationCenter;
12081208
}
12091209

1210-
// TODO: this is tobe removed in future once the js-sdk gets updated
1211-
public getVuid(): string | undefined {
1212-
return undefined;
1213-
}
1214-
12151210
public sendOdpEvent(
12161211
action: string,
12171212
type?: string,

0 commit comments

Comments
 (0)