Skip to content

Commit 7c5c585

Browse files
author
Daniel OBrien
committed
fix accessor style based on feedback
1 parent 9ce1049 commit 7c5c585

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

packages/sdk/ai/src/index.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,8 @@ export class AIClient {
7777

7878
return {
7979
config: detail.value,
80-
tracker: new LDAIConfigTracker(
81-
this.ldClient,
82-
key,
83-
// eslint-disable-next-line @typescript-eslint/dot-notation
84-
detail.value['_ldMeta'].variationId,
85-
context,
86-
),
80+
// eslint-disable-next-line no-underscore-dangle
81+
tracker: new LDAIConfigTracker(this.ldClient, key, detail.value._ldMeta.variationId, context),
8782
noConfiguration: Object.keys(detail).length === 0,
8883
};
8984
}

0 commit comments

Comments
 (0)