Skip to content

Commit 4b2f0c1

Browse files
authored
Merge pull request #6678 from Expensify/OSBotify-cherry-pick-staging-6670
2 parents 68f6130 + 7e1777e commit 4b2f0c1

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
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 1001011900
153-
versionName "1.1.19-0"
152+
versionCode 1001011901
153+
versionName "1.1.19-1"
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.0</string>
34+
<string>1.1.19.1</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.0</string>
22+
<string>1.1.19.1</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-0",
3+
"version": "1.1.19-1",
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/components/withWindowDimensions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default function (WrappedComponent) {
7171
onDimensionChange(newDimensions) {
7272
const {window} = newDimensions;
7373
const isSmallScreenWidth = window.width <= variables.mobileResponsiveWidthBreakpoint;
74-
const isMediumScreenWidth = !isSmallScreenWidth && window.width <= variables.mediumScreenResponsiveWidthBreakpoint;
74+
const isMediumScreenWidth = !isSmallScreenWidth && window.width <= variables.tabletResponsiveWidthBreakpoint;
7575
this.setState({
7676
windowHeight: window.height,
7777
windowWidth: window.width,

src/pages/signin/SignInPage.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ class SignInPage extends Component {
8585
<SignInPageLayout
8686
welcomeText={welcomeText}
8787
shouldShowWelcomeText={showLoginForm || showPasswordForm || !showResendValidationLinkForm}
88-
shouldShowWelcomeScreenshot={showLoginForm}
8988
>
9089
{/* LoginForm and PasswordForm must use the isVisible prop. This keeps them mounted, but visually hidden
9190
so that password managers can access the values. Conditionally rendering these components will break this feature. */}

0 commit comments

Comments
 (0)