fix type error (build)

This commit is contained in:
Maze Winther 2026-02-01 00:20:34 +01:00
parent 02d4f9c314
commit b2a976ba82
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ PhoneInput.displayName = "PhoneInput";
const InputComponent = React.forwardRef<
HTMLInputElement,
React.ComponentProps<"input">
>(({ className, ...props }, ref) => (
>(({ className, size: _size, ...props }, ref) => (
<Input
className={cn("rounded-s-none rounded-e-lg", className)}
{...props}