From 7e94c2e74e24f852cc5f9faa1c12d6c1d08a7389 Mon Sep 17 00:00:00 2001
From: OSBotify <76178356+OSBotify@users.noreply.github.com>
Date: Tue, 4 Apr 2023 20:04:08 -0400
Subject: [PATCH 1/2] Merge pull request #16947 from
Expensify/version-BUILD-E74FBC82-885E-4B60-8C15-16C2E422C8B8
Update version to 1.2.94-3 on main
(cherry picked from commit 490265a6c97b4e7236def11de9859b393614ec76)
---
android/app/build.gradle | 4 ++--
ios/NewExpensify/Info.plist | 2 +-
ios/NewExpensifyTests/Info.plist | 2 +-
package-lock.json | 4 ++--
package.json | 2 +-
5 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 2594cfbeccda..900be788b70b 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -156,8 +156,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1001029402
- versionName "1.2.94-2"
+ versionCode 1001029403
+ versionName "1.2.94-3"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
if (isNewArchitectureEnabled()) {
diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist
index a906ca8ca581..cdd2ad3b5c1d 100644
--- a/ios/NewExpensify/Info.plist
+++ b/ios/NewExpensify/Info.plist
@@ -30,7 +30,7 @@
CFBundleVersion
- 1.2.94.2
+ 1.2.94.3
ITSAppUsesNonExemptEncryption
LSApplicationQueriesSchemes
diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist
index 38a4f1cdafb2..11a313e50e92 100644
--- a/ios/NewExpensifyTests/Info.plist
+++ b/ios/NewExpensifyTests/Info.plist
@@ -19,6 +19,6 @@
CFBundleSignature
????
CFBundleVersion
- 1.2.94.2
+ 1.2.94.3
diff --git a/package-lock.json b/package-lock.json
index 34a5b2b052cb..17967b00f227 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "new.expensify",
- "version": "1.2.94-2",
+ "version": "1.2.94-3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "new.expensify",
- "version": "1.2.94-2",
+ "version": "1.2.94-3",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
diff --git a/package.json b/package.json
index 7d811565e702..29e85720ceea 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "1.2.94-2",
+ "version": "1.2.94-3",
"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.",
From 45e2549ab0913a421b78b2f6c03f533957f88c9d Mon Sep 17 00:00:00 2001
From: Jack Nam <30609178+thienlnam@users.noreply.github.com>
Date: Tue, 4 Apr 2023 16:55:47 -0700
Subject: [PATCH 2/2] Merge pull request #16922 from
getusha/show-compose-box-after-logout
(cherry picked from commit efe0a09956032ba9e3b49a45e8c47e5735af3293)
---
src/pages/home/ReportScreen.js | 7 ++++++-
src/pages/home/report/ReportActionsView.js | 3 ---
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/pages/home/ReportScreen.js b/src/pages/home/ReportScreen.js
index 5ae84808ab11..c37c0f028216 100644
--- a/src/pages/home/ReportScreen.js
+++ b/src/pages/home/ReportScreen.js
@@ -320,9 +320,14 @@ class ReportScreen extends React.Component {
isComposerFullSize={this.props.isComposerFullSize}
onSubmitComment={this.onSubmitComment}
/>
-
>
)}
+
+ {!this.isReportReadyForDisplay() && (
+
+ )}
+
+
diff --git a/src/pages/home/report/ReportActionsView.js b/src/pages/home/report/ReportActionsView.js
index 544606abf3ee..ffb20a735827 100755
--- a/src/pages/home/report/ReportActionsView.js
+++ b/src/pages/home/report/ReportActionsView.js
@@ -14,12 +14,10 @@ import * as ReportScrollManager from '../../../libs/ReportScrollManager';
import withLocalize, {withLocalizePropTypes} from '../../../components/withLocalize';
import Performance from '../../../libs/Performance';
import {withNetwork} from '../../../components/OnyxProvider';
-import * as EmojiPickerAction from '../../../libs/actions/EmojiPickerAction';
import FloatingMessageCounter from './FloatingMessageCounter';
import networkPropTypes from '../../../components/networkPropTypes';
import ReportActionsList from './ReportActionsList';
import CopySelectionHelper from '../../../components/CopySelectionHelper';
-import EmojiPicker from '../../../components/EmojiPicker/EmojiPicker';
import * as ReportActionsUtils from '../../../libs/ReportActionsUtils';
import * as ReportUtils from '../../../libs/ReportUtils';
import reportPropTypes from '../../reportPropTypes';
@@ -353,7 +351,6 @@ class ReportActionsView extends React.Component {
loadMoreChats={this.loadMoreChats}
newMarkerReportActionID={this.state.newMarkerReportActionID}
/>
-
>
);