개발일지/Error

[Error] Warning: Received `true` for a non-boolean attribute `className`.

zineeworld 2024. 6. 21. 10:48
반응형

Warning: Received `true` for a non-boolean attribute `className`.
If you want to write it to the DOM, pass a string instead: className="true" or className={value.toString()}.

 

 

리액트에서 이런 에러가 콘솔에 찍히고 있었다.

검색해보면 스타일드 컴포넌트를 사용할 때 뜨는 에러라고만 나오는데

내 경우에는 간단하게 그냥 클래스네임을 attribute값만 적어놔서 생기는 오류였다.

 

className을 지워주고 나니 에러가 사라졌다!

반응형