Skip to content

Commit

Permalink
addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldoglas committed Jun 6, 2024
1 parent 9cff196 commit 0a2922c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libs/Fullstory/index.native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const FS = {
// define FullStory user identity
let localMetadata = metadata;
localMetadata.environment = envName;
FullStory.identify(String(metadata.accountID), {
FullStory.identify(String(localMetadata.accountID), {
properties: localMetadata,
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Fullstory/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const FS = {
if (value) {
let localMetadata = value;
localMetadata.environment = envName;
FS.fsIdentify(value);
FS.fsIdentify(localMetadata);
}
});
});
Expand Down

0 comments on commit 0a2922c

Please sign in to comment.