mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
Remove console warns
This commit is contained in:
parent
2ff86bd6a7
commit
55c9eb3ab4
@ -141,8 +141,6 @@ export default class PinModal extends Component<Props, State> {
|
|||||||
} = this.state;
|
} = this.state;
|
||||||
// } = this.props.modal;
|
// } = this.props.modal;
|
||||||
|
|
||||||
console.warn('passphrase', passphrase);
|
|
||||||
console.warn('passphraseRevision', passphraseRevision);
|
|
||||||
const passphraseInputValue: string = passphrase;
|
const passphraseInputValue: string = passphrase;
|
||||||
const passphraseRevisionInputValue: string = passphraseRevision;
|
const passphraseRevisionInputValue: string = passphraseRevision;
|
||||||
// if (!visible && !passphraseFocused) {
|
// if (!visible && !passphraseFocused) {
|
||||||
@ -152,10 +150,8 @@ export default class PinModal extends Component<Props, State> {
|
|||||||
// passphraseRevisionInputValue = passphraseRevision.replace(/./g, '•');
|
// passphraseRevisionInputValue = passphraseRevision.replace(/./g, '•');
|
||||||
// }
|
// }
|
||||||
|
|
||||||
console.warn('VISIBLE', visible);
|
|
||||||
|
|
||||||
if (this.passphraseInput) {
|
if (this.passphraseInput) {
|
||||||
console.warn('this.passphraseInput', this.passphraseInput);
|
|
||||||
// this.passphraseInput.value = passphraseInputValue;
|
// this.passphraseInput.value = passphraseInputValue;
|
||||||
// this.passphraseInput.setAttribute('type', visible || (!visible && !passphraseFocused) ? 'text' : 'password');
|
// this.passphraseInput.setAttribute('type', visible || (!visible && !passphraseFocused) ? 'text' : 'password');
|
||||||
this.passphraseInput.setAttribute('type', visible ? 'text' : 'password');
|
this.passphraseInput.setAttribute('type', visible ? 'text' : 'password');
|
||||||
@ -181,7 +177,6 @@ export default class PinModal extends Component<Props, State> {
|
|||||||
// or
|
// or
|
||||||
// https://github.com/zakangelle/react-password-mask/blob/master/src/index.js
|
// https://github.com/zakangelle/react-password-mask/blob/master/src/index.js
|
||||||
if (input === 'passphrase') {
|
if (input === 'passphrase') {
|
||||||
console.warn('PASSPHRASE CHANGE', value);
|
|
||||||
this.setState(previousState => ({
|
this.setState(previousState => ({
|
||||||
match: previousState.singleInput || previousState.passphraseRevision === value,
|
match: previousState.singleInput || previousState.passphraseRevision === value,
|
||||||
passphrase: value,
|
passphrase: value,
|
||||||
@ -307,7 +302,6 @@ export default class PinModal extends Component<Props, State> {
|
|||||||
//let passphraseRevisionInputType: string = visible || passphraseRevisionFocused ? "text" : "password";
|
//let passphraseRevisionInputType: string = visible || passphraseRevisionFocused ? "text" : "password";
|
||||||
|
|
||||||
const showPassphraseCheckboxFn: Function = visible ? this.onPassphraseHide : this.onPassphraseShow;
|
const showPassphraseCheckboxFn: Function = visible ? this.onPassphraseHide : this.onPassphraseShow;
|
||||||
console.log('passphraseInputType', passphraseInputType);
|
|
||||||
return (
|
return (
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<H2>Enter { deviceLabel } passphrase</H2>
|
<H2>Enter { deviceLabel } passphrase</H2>
|
||||||
|
Loading…
Reference in New Issue
Block a user