diff --git a/android/app/build.gradle b/android/app/build.gradle index 26dda62985a..1829fafd63f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -152,8 +152,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001014203 - versionName "1.1.42-3" + versionCode 1001014204 + versionName "1.1.42-4" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index c693e5f82a8..3b825dae3b9 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -31,7 +31,7 @@ CFBundleVersion - 1.1.42.3 + 1.1.42.4 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index bdc05e72a73..792bfdb28fd 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.1.42.3 + 1.1.42.4 diff --git a/package-lock.json b/package-lock.json index ac9e65e362a..6a543fa6edb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.42-3", + "version": "1.1.42-4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 93a52b95394..bd685cfb1dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.42-3", + "version": "1.1.42-4", "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/pages/ReportDetailsPage.js b/src/pages/ReportDetailsPage.js index 7e5a38625c9..d183a833a4c 100644 --- a/src/pages/ReportDetailsPage.js +++ b/src/pages/ReportDetailsPage.js @@ -5,7 +5,7 @@ import Str from 'expensify-common/lib/str'; import _ from 'underscore'; import {View, ScrollView} from 'react-native'; import lodashGet from 'lodash/get'; -import Avatar from '../components/Avatar'; +import RoomHeaderAvatars from '../components/RoomHeaderAvatars'; import compose from '../libs/compose'; import withLocalize, {withLocalizePropTypes} from '../components/withLocalize'; import ONYXKEYS from '../ONYXKEYS'; @@ -108,6 +108,7 @@ class ReportDetailsPage extends Component { } render() { + const isPolicyExpenseChat = ReportUtils.isPolicyExpenseChat(this.props.report); const isChatRoom = ReportUtils.isChatRoom(this.props.report); const chatRoomSubtitle = ReportUtils.getChatRoomSubtitle(this.props.report, this.props.policies); const participants = lodashGet(this.props.report, 'participants', []); @@ -136,13 +137,12 @@ class ReportDetailsPage extends Component { - + + +