diff --git a/android/app/build.gradle b/android/app/build.gradle index adbb0644dfeb..e46a2a9ddafc 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -150,8 +150,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001008610 - versionName "1.0.86-10" + versionCode 1001008611 + versionName "1.0.86-11" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index 9da2274be761..29f5a91463b8 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -30,7 +30,7 @@ CFBundleVersion - 1.0.86.10 + 1.0.86.11 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index c9541f592813..6e8249fb850a 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.0.86.10 + 1.0.86.11 diff --git a/package-lock.json b/package-lock.json index 31dcfc806053..dde29dc933fc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.0.86-10", + "version": "1.0.86-11", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 86389934a33d..2361f8bf25e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.0.86-10", + "version": "1.0.86-11", "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/components/ExpensiTextInput/BaseExpensiTextInput.js b/src/components/ExpensiTextInput/BaseExpensiTextInput.js index 564d9afd0bfe..d488a560ab3c 100644 --- a/src/components/ExpensiTextInput/BaseExpensiTextInput.js +++ b/src/components/ExpensiTextInput/BaseExpensiTextInput.js @@ -159,7 +159,7 @@ class BaseExpensiTextInput extends Component { placeholder={(this.state.isFocused || !label) ? placeholder : null} placeholderTextColor={themeColors.placeholderText} underlineColorAndroid="transparent" - style={[...inputStyle, errorText ? styles.errorOutline : undefined]} + style={inputStyle} onFocus={this.onFocus} onBlur={this.onBlur} onChangeText={this.setValue}