diff --git a/src/components/MoneyRequestConfirmationList.js b/src/components/MoneyRequestConfirmationList.js index 0b266351a60c7..83f2446686c98 100755 --- a/src/components/MoneyRequestConfirmationList.js +++ b/src/components/MoneyRequestConfirmationList.js @@ -321,6 +321,9 @@ function MoneyRequestConfirmationList(props) { text = translate('iou.split'); } else if ((props.receiptPath && isTypeRequest) || isDistanceRequestWithoutRoute) { text = translate('iou.request'); + if (props.iouAmount !== 0) { + text = translate('iou.requestAmount', {amount: formattedAmount}); + } } else { const translationKey = isSplitBill ? 'iou.splitAmount' : 'iou.requestAmount'; text = translate(translationKey, {amount: formattedAmount});