에러 해결 13

[React]Cannot update a component (`Transaction`) while rendering a different component

리액트로 프로젝트를 진행 중 동작에는 아무 문제가 없었지만 콘솔 창에는 Warning이 생긴 걸 발견했다. Warning: Cannot update a component(`Transaction`) while rendering a different component (`OrderingCompanySelectModal`). To locate the bas setSTate() call inside `OrderingCompanySelectModal`, follow the stack trace as described in .... 버전 16.13.0에서 추가되었다고 검색결과 알게 되었다. 다른 구성 요소에서 렌더링하는 동안 setState를 호출하면? 경고가 표시된다고 리액트 공식문서에 적혀있다. (번역기를 돌려..

에러 해결 2021.12.10

[React] 이미지파일 Module not found

Module not found: Can't resolve 'public/favicon.ico' in '/Users/choisuhyeok/project/helmettest/src' public 폴더에 있는 favicon.ico 이미지 파일을 import 해서 사용하려는데 이러한 에러 문구가 떴다... 분명 경로는 맞는 거 같은데 왜 Module not found가 뜨는 것인가... react에서 이미지 경로 문제 글을 보고 해결 할 수 있었다. js파일에 import하거나 css 파일에서 background로 사용되는 경우 모두, 컴파일 시 이미지 자체도 포함되어 진행되기에 발생하는 이슈인 듯합니다. 그러나 Img 태그의 src는 컴파일이 완료된 이후에 public/index.html기준으로 이미지를 불러..

에러 해결 2021.09.12