clean up debug console.log calls

This commit is contained in:
Elijah Duffy
2025-07-16 17:47:34 -07:00
parent 03ca2dd5af
commit c45224aff8
6 changed files with 0 additions and 13 deletions

View File

@@ -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();