diff --git a/src/pages/iou/steps/MoneyRequestAmountForm.js b/src/pages/iou/steps/MoneyRequestAmountForm.js index c4fc29957179..cc918e3ee3df 100644 --- a/src/pages/iou/steps/MoneyRequestAmountForm.js +++ b/src/pages/iou/steps/MoneyRequestAmountForm.js @@ -109,7 +109,7 @@ function MoneyRequestAmountForm({amount, currency, isEditing, forwardedRef, onCu if (!currency || !_.isNumber(amount)) { return; } - const amountAsStringForState = CurrencyUtils.convertToFrontendAmount(amount).toString(); + const amountAsStringForState = amount ? CurrencyUtils.convertToFrontendAmount(amount).toString() : ''; setCurrentAmount(amountAsStringForState); setSelection({ start: amountAsStringForState.length,