Skip to content

Commit

Permalink
bugfix/login (#1865)
Browse files Browse the repository at this point in the history
* fix

* changelog

* CURRENT_PROJECT_VERSION
  • Loading branch information
estebanmino authored Sep 30, 2020
1 parent 1b68489 commit 429f861
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Current Develop Branch

## v1.0.3 - Sept 30 2020
- [#1865](https://github.com/MetaMask/metamask-mobile/pull/1865): bugfix/login (#1865)
- [#1863](https://github.com/MetaMask/metamask-mobile/pull/1863): transak countries update (#1863)
- [#1829](https://github.com/MetaMask/metamask-mobile/pull/1829): Improvement/browser refactor (#1829)
- [#1848](https://github.com/MetaMask/metamask-mobile/pull/1848): Allow for 24 length seedphrase on import (#1848)
Expand Down
2 changes: 1 addition & 1 deletion app/components/Views/Login/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ class Login extends PureComponent {
)}

<View style={styles.ctaWrapper} testID={'log-in-button'}>
<StyledButton disabled={disabled} type={'confirm'} onPress={this.onLogin}>
<StyledButton disabled={disabled} type={'confirm'} onPress={() => this.onLogin(disabled)}>
{this.state.loading ? (
<ActivityIndicator size="small" color="white" />
) : (
Expand Down
4 changes: 2 additions & 2 deletions ios/MetaMask.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@
CODE_SIGN_ENTITLEMENTS = MetaMask/MetaMaskDebug.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 524;
CURRENT_PROJECT_VERSION = 525;
DEAD_CODE_STRIPPING = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = 48XVW22RCG;
Expand Down Expand Up @@ -910,7 +910,7 @@
CODE_SIGN_ENTITLEMENTS = MetaMask/MetaMask.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 524;
CURRENT_PROJECT_VERSION = 525;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 48XVW22RCG;
FRAMEWORK_SEARCH_PATHS = (
Expand Down

0 comments on commit 429f861

Please sign in to comment.