Argument of type '({ customCategory }: SForm) => void' is not assignable to parameter of type 'SubmitHandler<FieldValues>'. Types of parameters '__0' and 'data' are incompatible. Property 'customCategory' is missing in type '{ [x: string]: any; }' but required in type 'SForm'.
이런 오류가 떴다. 즉 타입이 제대로 적용이 되지 않은 것이다.
이런식으로 코드를 만들어줬는데.
handleSubmit 을 useForm에서 가져오는 과정에서 타입지정을 안해주고 가져와서 생긴 오류이다.
이렇게 해주면 끝!
'Javascript > 오류' 카테고리의 다른 글
[오류 해결] Cannot read Property '0' of Undefined in JS (0) | 2022.06.27 |
---|