카테고리 없음

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

쿠카곰돌이 2024. 9. 10. 15:41
반응형

오류

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

 

해결

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