Skip to content

Commit 0a976ae

Browse files
authored
Merge pull request #6680 from Expensify/OSBotify-cherry-pick-staging-6672
2 parents 4b2f0c1 + 00a9b68 commit 0a976ae

File tree

6 files changed

+24
-21
lines changed

6 files changed

+24
-21
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ android {
149149
minSdkVersion rootProject.ext.minSdkVersion
150150
targetSdkVersion rootProject.ext.targetSdkVersion
151151
multiDexEnabled rootProject.ext.multiDexEnabled
152-
versionCode 1001011901
153-
versionName "1.1.19-1"
152+
versionCode 1001011902
153+
versionName "1.1.19-2"
154154
}
155155
splits {
156156
abi {

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</dict>
3232
</array>
3333
<key>CFBundleVersion</key>
34-
<string>1.1.19.1</string>
34+
<string>1.1.19.2</string>
3535
<key>ITSAppUsesNonExemptEncryption</key>
3636
<false/>
3737
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.1.19.1</string>
22+
<string>1.1.19.2</string>
2323
</dict>
2424
</plist>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "1.1.19-1",
3+
"version": "1.1.19-2",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

src/pages/AddPersonalBankAccountPage.js

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import AddPlaidBankAccount from '../components/AddPlaidBankAccount';
1010
import getPlaidOAuthReceivedRedirectURI from '../libs/getPlaidOAuthReceivedRedirectURI';
1111
import compose from '../libs/compose';
1212
import ONYXKEYS from '../ONYXKEYS';
13+
import KeyboardAvoidingView from '../components/KeyboardAvoidingView';
1314

1415
const propTypes = {
1516
...withLocalizePropTypes,
@@ -24,21 +25,23 @@ const defaultProps = {
2425

2526
const AddPersonalBankAccountPage = props => (
2627
<ScreenWrapper>
27-
<HeaderWithCloseButton
28-
title={props.translate('bankAccount.addBankAccount')}
29-
onCloseButtonPress={Navigation.dismissModal}
30-
shouldShowBackButton
31-
onBackButtonPress={() => Navigation.goBack()}
32-
/>
33-
<AddPlaidBankAccount
34-
onSubmit={({account, password, plaidLinkToken}) => {
35-
BankAccounts.addPersonalBankAccount(account, password, plaidLinkToken);
36-
}}
37-
onExitPlaid={Navigation.dismissModal}
38-
receivedRedirectURI={getPlaidOAuthReceivedRedirectURI()}
39-
plaidLinkOAuthToken={props.plaidLinkToken}
40-
isPasswordRequired
41-
/>
28+
<KeyboardAvoidingView>
29+
<HeaderWithCloseButton
30+
title={props.translate('bankAccount.addBankAccount')}
31+
onCloseButtonPress={Navigation.dismissModal}
32+
shouldShowBackButton
33+
onBackButtonPress={() => Navigation.goBack()}
34+
/>
35+
<AddPlaidBankAccount
36+
onSubmit={({account, password, plaidLinkToken}) => {
37+
BankAccounts.addPersonalBankAccount(account, password, plaidLinkToken);
38+
}}
39+
onExitPlaid={Navigation.dismissModal}
40+
receivedRedirectURI={getPlaidOAuthReceivedRedirectURI()}
41+
plaidLinkOAuthToken={props.plaidLinkToken}
42+
isPasswordRequired
43+
/>
44+
</KeyboardAvoidingView>
4245
</ScreenWrapper>
4346
);
4447

0 commit comments

Comments
 (0)