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 26349c5 commit eb7f838Copy full SHA for eb7f838
core/src/components/input-otp/input-otp.tsx
@@ -449,9 +449,6 @@ export class InputOTP implements ComponentInterface {
449
450
if (event.key === 'Backspace') {
451
if (this.inputValues[index]) {
452
- // Remove the value at the current index
453
- this.inputValues[index] = '';
454
-
455
// Shift all values to the right of the current index left by one
456
for (let i = index; i < length - 1; i++) {
457
this.inputValues[i] = this.inputValues[i + 1];
0 commit comments