diff --git a/src/components/IOUConfirmationList.js b/src/components/IOUConfirmationList.js index 438c0fb62558..8c98d99a0b57 100755 --- a/src/components/IOUConfirmationList.js +++ b/src/components/IOUConfirmationList.js @@ -161,7 +161,10 @@ class IOUConfirmationList extends Component { } componentDidMount() { - this.addVenmoPaymentOptionToMenu(); + // Only add the Venmo option if we're sending a payment + if (this.props.iouType === CONST.IOU.IOU_TYPE.SEND) { + this.addVenmoPaymentOptionToMenu(); + } } componentWillUnmount() {