We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a2922c commit d833d4cCopy full SHA for d833d4c
src/libs/Fullstory/index.native.ts
@@ -43,7 +43,7 @@ const FS = {
43
} else {
44
Environment.getEnvironment().then((envName: string) => {
45
// define FullStory user identity
46
- let localMetadata = metadata;
+ const localMetadata = metadata;
47
localMetadata.environment = envName;
48
FullStory.identify(String(localMetadata.accountID), {
49
properties: localMetadata,
src/libs/Fullstory/index.ts
@@ -64,7 +64,7 @@ const FS = {
64
FS.onReady().then(() => {
65
FS.consent(true);
66
if (value) {
67
- let localMetadata = value;
+ const localMetadata = value;
68
69
FS.fsIdentify(localMetadata);
70
}
0 commit comments