728x90
[ 문제 ]
A component is changing a controlled input of type text to be uncontrolled. Input elements should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component.
input 의 value에 undefined가 들어갔을 경우에 대한 처리가 없다는 경고.
[ 해결 ]
input의 value가 undefined일 때 ''가 들어올 수 있도록 한다.
value={value || ""}
728x90
'💎 리액트' 카테고리의 다른 글
[리액트] Invalid token specified (0) | 2022.05.10 |
---|---|
[React 리액트] react-dom.development.js:67 Warning: You provided a `value` prop to a form field without an `onChange` handler 해결 (0) | 2022.05.04 |
React json 형태의 [object Object] 출력하기 (1) | 2022.04.21 |
React 컴포넌트 호출시 유의사항 - PascalCase (0) | 2022.04.19 |
리액트 useCallback, useCallback 쓰는 이유 (0) | 2022.03.10 |
댓글