diff --git a/android/app/build.gradle b/android/app/build.gradle
index e77d756cbbe8..0976b66e69bd 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -106,8 +106,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1001032506
- versionName "1.3.25-6"
+ versionCode 1001032507
+ versionName "1.3.25-7"
}
splits {
diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist
index 11d265768732..38c7628b753b 100644
--- a/ios/NewExpensify/Info.plist
+++ b/ios/NewExpensify/Info.plist
@@ -32,7 +32,7 @@
CFBundleVersion
- 1.3.25.6
+ 1.3.25.7
ITSAppUsesNonExemptEncryption
LSApplicationQueriesSchemes
diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist
index a593ef9285c7..bf23732dceb4 100644
--- a/ios/NewExpensifyTests/Info.plist
+++ b/ios/NewExpensifyTests/Info.plist
@@ -19,6 +19,6 @@
CFBundleSignature
????
CFBundleVersion
- 1.3.25.6
+ 1.3.25.7
diff --git a/package-lock.json b/package-lock.json
index a8c6475eadac..886d64bbeaf5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "new.expensify",
- "version": "1.3.25-6",
+ "version": "1.3.25-7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "new.expensify",
- "version": "1.3.25-6",
+ "version": "1.3.25-7",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
diff --git a/package.json b/package.json
index b07ccb42fa66..5541b5e3f456 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "1.3.25-6",
+ "version": "1.3.25-7",
"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/ReportActionItem/IOUPreview.js b/src/components/ReportActionItem/IOUPreview.js
index 1b9a95a1ef08..9251293f844e 100644
--- a/src/components/ReportActionItem/IOUPreview.js
+++ b/src/components/ReportActionItem/IOUPreview.js
@@ -124,7 +124,7 @@ const defaultProps = {
};
const IOUPreview = (props) => {
- if (_.isEmpty(props.iouReport)) {
+ if (_.isEmpty(props.iouReport) && !props.isBillSplit) {
return null;
}
const sessionEmail = lodashGet(props.session, 'email', null);
diff --git a/src/pages/iou/SplitBillDetailsPage.js b/src/pages/iou/SplitBillDetailsPage.js
index a3104a72dce1..f8a8c31940a6 100644
--- a/src/pages/iou/SplitBillDetailsPage.js
+++ b/src/pages/iou/SplitBillDetailsPage.js
@@ -73,10 +73,7 @@ const SplitBillDetailsPage = (props) => {
return (
-
+