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 ec35637 commit b0fea61Copy full SHA for b0fea61
core/src/components/input-otp/input-otp.tsx
@@ -695,7 +695,7 @@ export class InputOTP implements ComponentInterface {
695
// Create an array of the same length as the input OTP
696
// and fill it with the input values
697
const values = Array.from({ length }, (_, i) => inputValues[i] || '');
698
- return values.findIndex(value => !value || value === '') ?? -1;
+ return values.findIndex((value) => !value || value === '') ?? -1;
699
}
700
701
/**
0 commit comments