Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ShridharGoel committed May 2, 2024
1 parent 27d45bb commit ace5f4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1302,6 +1302,8 @@ const CONST = {
STAGING: 'staging',
PRODUCTION: 'production',
ADHOC: 'adhoc',
DEV_SUFFIX: ' Dev',
ADHOC_SUFFIX: ' AdHoc',
},

// Used to delay the initial fetching of reportActions when the app first inits or reconnects (e.g. returning
Expand Down
4 changes: 2 additions & 2 deletions src/libs/getDownloadFolderPathSuffixForIOS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ function getDownloadFolderPathSuffixForIOS(environment: string) {
folderSuffix = '';
break;
case CONST.ENVIRONMENT.ADHOC:
folderSuffix = ' AdHoc';
folderSuffix = CONST.ENVIRONMENT.ADHOC_SUFFIX;
break;
case CONST.ENVIRONMENT.DEV:
folderSuffix = ' Dev';
folderSuffix = CONST.ENVIRONMENT.DEV_SUFFIX;
break;
default:
folderSuffix = '';
Expand Down

0 comments on commit ace5f4e

Please sign in to comment.