작성
·
133
0
1. Error - Compiled with warnings.
./src/components/utils/FileUpload.js
[1] Line 57:25: img elements must have an alt prop, either with meaningful text, or an empty string for decorative images jsx-a11y/alt-text
해결
<img style={{ minWidth: '300px', width: '300px', height: '240px' }}
src={`http://localhost:5000/${image}`} alt=“” /> 추가
2. Error – 확인 버튼 미 동작
<Button type="submit" onClick={onSubmitHandler}> 확인 </Button>
으로 수정 (Basic 강의에서는 생기지 않았으나, 이번 강의에서는 이유를 몰라 여러번 코드를 확인하였습니다. 지금도 이유는 모르지만 이후에는 동작 되었습니다.
강의 감사합니다.