diff --git a/android/app/build.gradle b/android/app/build.gradle
index ea27891555d7..e0c4ad0ef2b4 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -148,8 +148,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1001007601
- versionName "1.0.76-1"
+ versionCode 1001007602
+ versionName "1.0.76-2"
}
splits {
abi {
diff --git a/ios/ExpensifyCash/Info.plist b/ios/ExpensifyCash/Info.plist
index 38e304c3f1d5..a4c2a01c027f 100644
--- a/ios/ExpensifyCash/Info.plist
+++ b/ios/ExpensifyCash/Info.plist
@@ -30,7 +30,7 @@
CFBundleVersion
- 1.0.76.1
+ 1.0.76.2
ITSAppUsesNonExemptEncryption
LSApplicationQueriesSchemes
diff --git a/ios/ExpensifyCashTests/Info.plist b/ios/ExpensifyCashTests/Info.plist
index 8d4d2455e09b..d54a7ac013cf 100644
--- a/ios/ExpensifyCashTests/Info.plist
+++ b/ios/ExpensifyCashTests/Info.plist
@@ -19,6 +19,6 @@
CFBundleSignature
????
CFBundleVersion
- 1.0.76.1
+ 1.0.76.2
diff --git a/package-lock.json b/package-lock.json
index 1ffc3b2610ad..599741eada21 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "expensify.cash",
- "version": "1.0.76-1",
+ "version": "1.0.76-2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 0ab95bfd8b56..1ccf92470989 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "expensify.cash",
- "version": "1.0.76-1",
+ "version": "1.0.76-2",
"author": "Expensify, Inc.",
"homepage": "https://expensify.cash",
"description": "Expensify.cash is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
diff --git a/src/pages/home/ReportScreen.js b/src/pages/home/ReportScreen.js
index 259ccaf20de5..0020eebdc831 100644
--- a/src/pages/home/ReportScreen.js
+++ b/src/pages/home/ReportScreen.js
@@ -34,15 +34,6 @@ class ReportScreen extends React.Component {
this.storeCurrentlyViewedReport();
}
- componentDidUpdate(prevProps) {
- const reportChanged = this.props.route.params.reportID !== prevProps.route.params.reportID;
-
- if (reportChanged) {
- this.prepareTransition();
- this.storeCurrentlyViewedReport();
- }
- }
-
componentWillUnmount() {
clearTimeout(this.loadingTimerId);
}
@@ -73,7 +64,7 @@ class ReportScreen extends React.Component {
this.setState({isLoading: true});
clearTimeout(this.loadingTimerId);
- this.loadingTimerId = setTimeout(() => this.setState({isLoading: false}), 300);
+ this.loadingTimerId = setTimeout(() => this.setState({isLoading: false}), 150);
}
/**
@@ -94,7 +85,7 @@ class ReportScreen extends React.Component {
-
+ {!this.shouldShowLoader() && }
);
}