Skip to content

Commit

Permalink
Merge pull request #46565 from Expensify/dsilva_standardizeFullstoryM…
Browse files Browse the repository at this point in the history
…etadataFormat

Removing the properties prefix so we use the same format as web
  • Loading branch information
puneetlath authored Jul 31, 2024
2 parents 1a93406 + f906178 commit 7d39fe0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/libs/Fullstory/index.native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ const FS = {
// define FullStory user identity
const localMetadata = metadata;
localMetadata.environment = envName;
FullStory.identify(String(localMetadata.accountID), {
properties: localMetadata,
});
FullStory.identify(String(localMetadata.accountID), localMetadata);
});
}
},
Expand Down

0 comments on commit 7d39fe0

Please sign in to comment.