Skip to content

Commit 3ba42e6

Browse files
authored
Merge pull request #39994 from nkdengineer/fix/39305
fix thread shows expensify.sms in header
2 parents 5a0e410 + b0cef0c commit 3ba42e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libs/ReportUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2946,7 +2946,7 @@ function getReportActionMessage(reportAction: ReportAction | EmptyObject, parent
29462946
if (ReportActionsUtils.isReimbursementQueuedAction(reportAction)) {
29472947
return getReimbursementQueuedActionMessage(reportAction, getReport(parentReportID), false);
29482948
}
2949-
return reportAction?.message?.[0]?.text ?? '';
2949+
return Str.removeSMSDomain(reportAction?.message?.[0]?.text ?? '');
29502950
}
29512951

29522952
/**

0 commit comments

Comments
 (0)