diff --git a/android/app/build.gradle b/android/app/build.gradle index 7a24adbd8b52..7c3fb1a4a7c2 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -150,8 +150,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001010500 - versionName "1.1.5-0" + versionCode 1001010501 + versionName "1.1.5-1" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index 3de1080f2d27..b1a0a0cd2c24 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -31,7 +31,7 @@ CFBundleVersion - 1.1.5.0 + 1.1.5.1 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index 504ce2c5ae2b..7a8857297500 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.1.5.0 + 1.1.5.1 diff --git a/package-lock.json b/package-lock.json index 5c7e1d1c9a96..7b17467407a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.5-0", + "version": "1.1.5-1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 120b7d1ee3bb..bf180864e533 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.5-0", + "version": "1.1.5-1", "author": "Expensify, Inc.", "homepage": "https://new.expensify.com", "description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.", 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() {