hata düzeltme 2

This commit is contained in:
2026-01-13 22:57:39 +03:00
parent 8eae770349
commit 6bbae0de21
8 changed files with 21 additions and 14 deletions

View File

@@ -6,6 +6,7 @@ export interface PhoneInputProps extends React.ComponentProps<typeof PhoneInput>
className?: string
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const PhoneInputComponent = React.forwardRef<any, PhoneInputProps>(({ className, ...props }, ref) => {
return (
<PhoneInput
@@ -14,6 +15,7 @@ const PhoneInputComponent = React.forwardRef<any, PhoneInputProps>(({ className,
numberInputProps={{
className: "flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
}}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
{...(props as any)}
/>
)