Skip to content

Commit

Permalink
Merge pull request #6935 from Expensify/OSBotify-cherry-pick-staging-…
Browse files Browse the repository at this point in the history
…6930
  • Loading branch information
OSBotify authored Dec 29, 2021
2 parents 6f70b23 + 009be76 commit 9d46831
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
versionCode 1001012400
versionName "1.1.24-0"
versionCode 1001012401
versionName "1.1.24-1"
}
splits {
abi {
Expand Down
2 changes: 1 addition & 1 deletion ios/NewExpensify/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.1.24.0</string>
<string>1.1.24.1</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/NewExpensifyTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.1.24.0</string>
<string>1.1.24.1</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
"version": "1.1.24-0",
"version": "1.1.24-1",
"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.",
Expand Down
6 changes: 5 additions & 1 deletion src/pages/ReimbursementAccount/AddressForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import StatePicker from '../../components/StatePicker';
import Text from '../../components/Text';

const propTypes = {

/** Translate key for Street name */
streetTranslationKey: PropTypes.string.isRequired,

/** Callback fired when a field changes. Passes args as {[fieldName]: val} */
onFieldChange: PropTypes.func.isRequired,

Expand Down Expand Up @@ -47,7 +51,7 @@ const defaultProps = {
const AddressForm = props => (
<>
<AddressSearch
label={props.translate('common.personalAddress')}
label={props.translate(props.streetTranslationKey)}
containerStyles={[styles.mt4]}
value={props.values.street}
onChange={props.onFieldChange}
Expand Down
1 change: 1 addition & 0 deletions src/pages/ReimbursementAccount/CompanyStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ class CompanyStep extends React.Component {
errorText={this.getErrorText('companyName')}
/>
<AddressForm
streetTranslationKey="common.companyAddress"
values={{
street: this.state.addressStreet,
city: this.state.addressCity,
Expand Down
1 change: 1 addition & 0 deletions src/pages/ReimbursementAccount/IdentityForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ const IdentityForm = (props) => {
maxLength={CONST.BANK_ACCOUNT.MAX_LENGTH.SSN}
/>
<AddressForm
streetTranslationKey="common.personalAddress"
values={props.values}
errors={props.errors}
onFieldChange={props.onFieldChange}
Expand Down

0 comments on commit 9d46831

Please sign in to comment.