Javascript/오류

[오류] Types of parameters '__0' and 'data' are incompatible.

개발자성장기 2022. 6. 16. 23:40
반응형

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에서 가져오는 과정에서 타입지정을 안해주고 가져와서 생긴 오류이다. 

 

이렇게 해주면 끝! 

반응형