Skip to content

Commit e9ccd91

Browse files
committed
fix: fix type error
1 parent ed8cce4 commit e9ccd91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ui/src/components/input-otp/InputOTP.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import InputOtpRoot from './InputOtpRoot';
88
import type { InputOTPProps } from './types';
99

1010
const InputOTP = forwardRef<ComponentRef<typeof InputOtpRoot>, InputOTPProps>((props, ref) => {
11-
const { className, classNames, inputCount = 6, mask, placeholder, separator, size, ...rest } = props;
11+
const { className, classNames, inputCount = 6, mask, separator, size, ...rest } = props;
1212

1313
const isSeparator = Boolean(separator);
1414

0 commit comments

Comments
 (0)