Skip to content

Commit

Permalink
Merge pull request #4450 from Expensify/update-staging-from-main
Browse files Browse the repository at this point in the history
  • Loading branch information
OSBotify authored Aug 6, 2021
2 parents a3f0988 + a40de4f commit c26d700
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 28 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
versionCode 1001008208
versionName "1.0.82-8"
versionCode 1001008209
versionName "1.0.82-9"
}
splits {
abi {
Expand Down
2 changes: 1 addition & 1 deletion ios/ExpensifyCash/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.0.82.8</string>
<string>1.0.82.9</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/ExpensifyCashTests/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.0.82.8</string>
<string>1.0.82.9</string>
</dict>
</plist>
52 changes: 39 additions & 13 deletions 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": "expensify.cash",
"version": "1.0.82-8",
"version": "1.0.82-9",
"author": "Expensify, Inc.",
"homepage": "https://new.expensify.com",
"description": "Expensify.cash is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
Expand Down
12 changes: 3 additions & 9 deletions src/pages/signin/SignInPageLayout/SignInPageLayoutNarrow.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import ExpensifyCashLogo from '../../../components/ExpensifyCashLogo';
import Text from '../../../components/Text';
import TermsAndLicenses from '../TermsAndLicenses';
import withLocalize, {withLocalizePropTypes} from '../../../components/withLocalize';
import compose from '../../../libs/compose';
import withWindowDimensions, {windowDimensionsPropTypes} from '../../../components/withWindowDimensions';

const propTypes = {
/** The children to show inside the layout */
Expand All @@ -18,7 +16,6 @@ const propTypes = {
* on form type (set password, sign in, etc.) */
welcomeText: PropTypes.string.isRequired,

...windowDimensionsPropTypes,
...withLocalizePropTypes,
};

Expand All @@ -28,10 +25,10 @@ const SignInPageLayoutNarrow = props => (
showsVerticalScrollIndicator={false}
style={[
styles.flexGrow1,
styles.mh5,
styles.signInPageNarrowContentContainer,
styles.alignSelfCenter,
]}
contentContainerStyle={styles.ph5}
>
<KeyboardAvoidingView behavior="position">
<View style={[styles.flexGrow1]}>
Expand All @@ -41,7 +38,7 @@ const SignInPageLayoutNarrow = props => (
styles.flex1,
styles.dFlex,
styles.flexColumn,
props.windowHeight > props.windowWidth ? styles.mt40Percentage : null,
styles.mt40Percentage,
]}
>
<View style={[styles.signInPageLogoNative, styles.mb2]}>
Expand All @@ -66,7 +63,4 @@ const SignInPageLayoutNarrow = props => (
SignInPageLayoutNarrow.propTypes = propTypes;
SignInPageLayoutNarrow.displayName = 'SignInPageLayoutNarrow';

export default compose(
withWindowDimensions,
withLocalize,
)(SignInPageLayoutNarrow);
export default withLocalize(SignInPageLayoutNarrow);
2 changes: 1 addition & 1 deletion src/styles/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ const styles = {
},

signInPageNarrowContentContainer: {
maxWidth: 295,
maxWidth: 335,
},

signInPageWideLeftContainer: {
Expand Down

0 comments on commit c26d700

Please sign in to comment.