We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00dfd51 commit c3b983cCopy full SHA for c3b983c
PinScreen.js
@@ -177,10 +177,12 @@ class PinScreen extends Component {
177
// a parameter.
178
if (key === "back") {
179
newPin = pin.substring(0, pin.length - 1);
180
+ this.setState({pin: newPin});
181
} else {
182
// Concat the letter in the string
183
if (pin.length < numberOfPins) {
184
newPin = pin.concat(key);
185
186
}
187
188
0 commit comments