diff --git a/android/app/build.gradle b/android/app/build.gradle index b8dbc338ee68..e78f1ba53bf3 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 1001031409 - versionName "1.3.14-9" + versionCode 1001031410 + versionName "1.3.14-10" } splits { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index b99259eed80d..d7fce6860731 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -30,7 +30,7 @@ CFBundleVersion - 1.3.14.9 + 1.3.14.10 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index 1280516d99c1..e4563d934e50 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.3.14.9 + 1.3.14.10 diff --git a/package-lock.json b/package-lock.json index 8045ec325c78..b8d61f1ac9ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "new.expensify", - "version": "1.3.14-9", + "version": "1.3.14-10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "new.expensify", - "version": "1.3.14-9", + "version": "1.3.14-10", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index b8eb857aec7b..d7b4c97e6eb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.3.14-9", + "version": "1.3.14-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/ReportActionsUtils.js b/src/libs/ReportActionsUtils.js index 558afca9904e..3bd4b8ff84ce 100644 --- a/src/libs/ReportActionsUtils.js +++ b/src/libs/ReportActionsUtils.js @@ -144,6 +144,11 @@ function isConsecutiveActionMadeByPreviousActor(reportActions, actionIndex) { return false; } + // Do not group if previous action was a created action + if (previousAction.actionName === CONST.REPORT.ACTIONS.TYPE.CREATED) { + return false; + } + // Do not group if previous or current action was a renamed action if (previousAction.actionName === CONST.REPORT.ACTIONS.TYPE.RENAMED || currentAction.actionName === CONST.REPORT.ACTIONS.TYPE.RENAMED) { return false;