Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldoglas committed Apr 23, 2024
1 parent 5a22573 commit e423af1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libs/fullstory/index.native.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import FullStory, {FSPage} from '@fullstory/react-native';
import type {OnyxEntry} from 'react-native-onyx';
import type {UserMetadata} from '@src/types/onyx';
import * as Environment from '@src/libs/Environment/Environment';
import CONST from '@src/CONST';
import * as Environment from '@src/libs/Environment/Environment';
import type {UserMetadata} from '@src/types/onyx';

/**
* Fullstory React-Native lib adapter
Expand All @@ -25,7 +25,7 @@ const FS = {
consentAndIdentify: (value: OnyxEntry<UserMetadata>) => {
try {
Environment.getEnvironment().then((envName: string) => {
if(CONST.ENVIRONMENT.PRODUCTION !== envName) {
if (CONST.ENVIRONMENT.PRODUCTION !== envName) {
return;
}
// We only use FullStory in production environment
Expand Down

0 comments on commit e423af1

Please sign in to comment.