diff --git a/src/CONST.ts b/src/CONST.ts
index 4442635e6767..fb3cb8079226 100755
--- a/src/CONST.ts
+++ b/src/CONST.ts
@@ -4699,6 +4699,14 @@ const CONST = {
MAX_TAX_RATE_INTEGER_PLACES: 4,
MAX_TAX_RATE_DECIMAL_PLACES: 4,
+ DOWNLOADS_PATH: '/Downloads',
+ NEW_EXPENSIFY_PATH: '/New Expensify',
+
+ ENVIRONMENT_SUFFIX: {
+ DEV: ' Dev',
+ ADHOC: ' AdHoc',
+ },
+
SEARCH_TRANSACTION_TYPE: {
CASH: 'cash',
CARD: 'card',
diff --git a/src/components/ClientSideLoggingToolMenu/BaseClientSideLoggingToolMenu.tsx b/src/components/ClientSideLoggingToolMenu/BaseClientSideLoggingToolMenu.tsx
index fcad770908a6..7c4c669e2154 100644
--- a/src/components/ClientSideLoggingToolMenu/BaseClientSideLoggingToolMenu.tsx
+++ b/src/components/ClientSideLoggingToolMenu/BaseClientSideLoggingToolMenu.tsx
@@ -30,9 +30,11 @@ type BaseClientSideLoggingToolProps = {
onDisableLogging: (logs: Log[]) => void;
/** Action to run when enabling logging */
onEnableLogging?: () => void;
+ /** Path used to display location of saved file */
+ displayPath?: string;
} & BaseClientSideLoggingToolMenuOnyxProps;
-function BaseClientSideLoggingToolMenu({shouldStoreLogs, capturedLogs, file, onShareLogs, onDisableLogging, onEnableLogging}: BaseClientSideLoggingToolProps) {
+function BaseClientSideLoggingToolMenu({shouldStoreLogs, capturedLogs, file, onShareLogs, onDisableLogging, onEnableLogging, displayPath}: BaseClientSideLoggingToolProps) {
const {translate} = useLocalize();
const onToggle = () => {
@@ -70,7 +72,7 @@ function BaseClientSideLoggingToolMenu({shouldStoreLogs, capturedLogs, file, onS
{!!file && (
<>
- {`path: ${file.path}`}
+ {`path: ${displayPath}`}
{!!pathIOS && (
<>
- {`path: ${pathIOS}`}
+ {`path: ${displayPath}/${newFileName}`}