diff --git a/Mobile-Expensify b/Mobile-Expensify
index c9fefb1ca63f8..a47430ca00f0b 160000
--- a/Mobile-Expensify
+++ b/Mobile-Expensify
@@ -1 +1 @@
-Subproject commit c9fefb1ca63f88c952187f14acff16ea7116440d
+Subproject commit a47430ca00f0b1499835978298a7a16e86b9401b
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 54b2f3f3726da..380ac733bd5bf 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -114,8 +114,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1009012609
- versionName "9.1.26-9"
+ versionCode 1009012610
+ versionName "9.1.26-10"
// Supported language variants must be declared here to avoid from being removed during the compilation.
// This also helps us to not include unnecessary language variants in the APK.
resConfigs "en", "es"
diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist
index f2559eb26ecf8..1a3b5664fe79e 100644
--- a/ios/NewExpensify/Info.plist
+++ b/ios/NewExpensify/Info.plist
@@ -44,7 +44,7 @@
CFBundleVersion
- 9.1.26.9
+ 9.1.26.10
FullStory
OrgId
diff --git a/ios/NotificationServiceExtension/Info.plist b/ios/NotificationServiceExtension/Info.plist
index bfb1f27a55b17..943c3f8542035 100644
--- a/ios/NotificationServiceExtension/Info.plist
+++ b/ios/NotificationServiceExtension/Info.plist
@@ -13,7 +13,7 @@
CFBundleShortVersionString
9.1.26
CFBundleVersion
- 9.1.26.9
+ 9.1.26.10
NSExtension
NSExtensionPointIdentifier
diff --git a/ios/ShareViewController/Info.plist b/ios/ShareViewController/Info.plist
index adf5f894127bd..2904a7f0e1f0c 100644
--- a/ios/ShareViewController/Info.plist
+++ b/ios/ShareViewController/Info.plist
@@ -13,7 +13,7 @@
CFBundleShortVersionString
9.1.26
CFBundleVersion
- 9.1.26.9
+ 9.1.26.10
NSExtension
NSExtensionAttributes
diff --git a/package-lock.json b/package-lock.json
index f326b4df4178d..c8a43b72d0d3e 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "new.expensify",
- "version": "9.1.26-9",
+ "version": "9.1.26-10",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "new.expensify",
- "version": "9.1.26-9",
+ "version": "9.1.26-10",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
diff --git a/package.json b/package.json
index 6941a01e11a34..61efcbca95809 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "9.1.26-9",
+ "version": "9.1.26-10",
"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/libs/actions/IOU.ts b/src/libs/actions/IOU.ts
index c80569fde9820..bb9111d6cf2eb 100644
--- a/src/libs/actions/IOU.ts
+++ b/src/libs/actions/IOU.ts
@@ -8635,7 +8635,7 @@ function canApproveIOU(
const isCurrentUserManager = managerID === userAccountID;
const isOpenExpenseReport = isOpenExpenseReportReportUtils(iouReport);
const isApproved = isReportApproved({report: iouReport});
- const iouSettled = isSettled(iouReport?.reportID);
+ const iouSettled = isSettled(iouReport);
const reportNameValuePairs = chatReportRNVP ?? getReportNameValuePairs(iouReport?.reportID);
const isArchivedExpenseReport = isArchivedReport(reportNameValuePairs);
const reportTransactions = getReportTransactions(iouReport?.reportID);