diff --git a/components/auth/AuthInput.tsx b/components/auth/AuthInput.tsx index caafa8d..95cbe99 100644 --- a/components/auth/AuthInput.tsx +++ b/components/auth/AuthInput.tsx @@ -3,8 +3,7 @@ import { ChangeEvent, HTMLInputTypeAttribute, forwardRef } from "react"; export interface TextInputProps { className?: string; value: string; - setValue: React.Dispatch>; - isError: boolean; + isError?: boolean; errorText?: string; placeholder?: string; type?: HTMLInputTypeAttribute;