Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 0bc6dd7

Browse files
committed
prettier
1 parent c40da36 commit 0bc6dd7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/action/wallet.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@ class WalletAction {
205205
const { newPassword } = this._store.wallet;
206206
if (!newPassword || newPassword.length < MIN_PASSWORD_LENGTH) {
207207
this.initSetPassword();
208-
this._notification.display({ msg: `Set a password with at least ${MIN_PASSWORD_LENGTH} characters.` });
208+
this._notification.display({
209+
msg: `Set a password with at least ${MIN_PASSWORD_LENGTH} characters.`,
210+
});
209211
} else {
210212
this._nav.goSetPasswordConfirm();
211213
}

src/view/set-password-confirm.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ const SetPasswordConfirmView = ({ store, wallet }) => (
3535
onChangeText={password => wallet.setPasswordVerify({ password })}
3636
onSubmitEditing={() => wallet.checkNewPasswordConfirmation()}
3737
/>
38-
<GlasButton onPress={() => wallet.checkNewPasswordConfirmation()}>Next</GlasButton>
38+
<GlasButton onPress={() => wallet.checkNewPasswordConfirmation()}>
39+
Next
40+
</GlasButton>
3941
</MainContent>
4042
</SplitBackground>
4143
);

0 commit comments

Comments
 (0)