clean up debug console.log calls
This commit is contained in:
@@ -57,7 +57,6 @@
|
||||
|
||||
// updateHiddenInput updates the hidden input value with the current value of the pin input
|
||||
const updateHiddenInput = () => {
|
||||
console.log('updating hidden');
|
||||
hiddenInput.value = value;
|
||||
hiddenInput.dispatchEvent(new KeyboardEvent('keyup'));
|
||||
};
|
||||
@@ -91,8 +90,6 @@
|
||||
const clipboardValue = clipboardData.replace(/\D/g, '').slice(0, length);
|
||||
const clipboardValid = await isValueValid(clipboardValue, validateOpts);
|
||||
|
||||
console.log('pasting', clipboardValue, clipboardValid);
|
||||
|
||||
if (clipboardValid) {
|
||||
value = clipboardValue;
|
||||
inputs[inputs.length - 1].focus();
|
||||
|
||||
Reference in New Issue
Block a user