Skip to content

Commit

Permalink
Merge pull request #18985 from Expensify/vit-fixLinter
Browse files Browse the repository at this point in the history
[NoQA] Fix linter issue
  • Loading branch information
mountiny authored May 15, 2023
2 parents da8c1c5 + 2559bdd commit 896ad77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/IOUPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const IOUPreview = (props) => {
// If props.action is undefined then we are displaying within IOUDetailsModal and should use the full report amount
const requestAmount = props.isIOUAction ? moneyRequestAction.total : ReportUtils.getMoneyRequestTotal(props.iouReport);
const requestCurrency = props.isIOUAction ? moneyRequestAction.currency : props.iouReport.currency;
const requestComment = Str.htmlDecode(moneyRequestAction.comment).trim()
const requestComment = Str.htmlDecode(moneyRequestAction.comment).trim();

const getSettledMessage = () => {
switch (lodashGet(props.action, 'originalMessage.paymentType', '')) {
Expand Down

0 comments on commit 896ad77

Please sign in to comment.