TIL*

[React] Warning: A component is changing an uncontrolled input to be controlled.

mnmhbbb 2022. 5. 25. 01:09

Warning: A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info:

리액트로 폼을 만드는 작업을 하던 중 콘솔차에 발생한 문제
-> input type='file'의 value를 defaultValue로 변경하여 해결하였다.

해당 input의 value가 변경될 값이기 때문에 발생한 에러이다.