본문 바로가기

카테고리 없음

React Type 'T' does not satisfy the constraint 'FieldValues'. 오류 해결

반응형

오류

export type TConditionBaseProps<T> = {
  defaultValues?: T;
  onSubmit: SubmitHandler<T>;
  onReset?: () => void;
};

 

해결

export type TConditionBaseProps<T> = {
  defaultValues?: T;
  onSubmit: SubmitHandler<()=>T>;
  onReset?: () => void;
};
반응형