Skip to content

Commit

Permalink
Merge pull request Expensify#39994 from nkdengineer/fix/39305
Browse files Browse the repository at this point in the history
fix thread shows expensify.sms in header
  • Loading branch information
thienlnam authored Apr 17, 2024
2 parents 5a0e410 + b0cef0c commit 3ba42e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ReportUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2946,7 +2946,7 @@ function getReportActionMessage(reportAction: ReportAction | EmptyObject, parent
if (ReportActionsUtils.isReimbursementQueuedAction(reportAction)) {
return getReimbursementQueuedActionMessage(reportAction, getReport(parentReportID), false);
}
return reportAction?.message?.[0]?.text ?? '';
return Str.removeSMSDomain(reportAction?.message?.[0]?.text ?? '');
}

/**
Expand Down

0 comments on commit 3ba42e6

Please sign in to comment.