diff --git a/components/ui/phone-input.tsx b/components/ui/phone-input.tsx index 261c12a..004b426 100644 --- a/components/ui/phone-input.tsx +++ b/components/ui/phone-input.tsx @@ -53,7 +53,7 @@ const PhoneInput: React.ForwardRefExoticComponent = * * @param {E164Number | undefined} value - The entered value */ - onChange={(value) => onChange?.(value || "")} + onChange={(value) => onChange?.(value || ("" as RPNInput.Value))} {...props} /> );