React

[react] Input elements should have autocomplete attributes (suggested: "current-password")

킹king 2024. 7. 16. 10:42
반응형

input류 쓰다보면 노란 경고창이 뜨는데 크롬에서만 나타나는 증상이며 간단히 제거하는 방법은 아래와 같음

 

1. off 설정

<input autoComplete="off" type="password"/>

autoComplete off해주기

 

참고로 Password field is not contained in a form 이러한 form관련 노란 경고창이 뜬다면 그냥 영역을 form으로 감싸주고 submit만 해제해주면 된다.

<form onSubmit={(e) => e.preventDefault()}></form>

모든 게시물(특히 과거 게시물)은 잘못된 방법으로 처리한것을 좋다고 써놨을 수 있습니다. 참고만 하시고 틀린게 있다면 댓글 남겨주세요~