Skip to content

Commit b0fea61

Browse files
committed
style: lint
1 parent ec35637 commit b0fea61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/components/input-otp/input-otp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ export class InputOTP implements ComponentInterface {
695695
// Create an array of the same length as the input OTP
696696
// and fill it with the input values
697697
const values = Array.from({ length }, (_, i) => inputValues[i] || '');
698-
return values.findIndex(value => !value || value === '') ?? -1;
698+
return values.findIndex((value) => !value || value === '') ?? -1;
699699
}
700700

701701
/**

0 commit comments

Comments
 (0)