Skip to content

Commit e03ed72

Browse files
authored
Merge pull request Expensify#67460 from nkdengineer/fix/66192
fix: Description link in expense thread is rendered as HTML tags
2 parents 21725ea + 47defae commit e03ed72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libs/ReportUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4517,7 +4517,7 @@ function getTransactionReportName({
45174517
const formattedAmount = convertToDisplayString(amount, getCurrency(transaction)) ?? '';
45184518
const comment = getMerchantOrDescription(transaction);
45194519

4520-
return translateLocal('iou.threadExpenseReportName', {formattedAmount, comment});
4520+
return translateLocal('iou.threadExpenseReportName', {formattedAmount, comment: Parser.htmlToText(comment)});
45214521
}
45224522

45234523
/**

0 commit comments

Comments
 (0)