Commit cccfac77 authored by fro's avatar fro
Browse files

fix unlock if pin.length < 6

parent b6dc9128
......@@ -139,7 +139,7 @@ class AccountUnlockView extends React.PureComponent {
<PinInput
onChangeText={pin => {
this.setState({ pin });
if (pin.length < 6) {
if (pin.length < 1) {
return;
}
debounce(this.props.onChange, 200)(pin);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment