오류 | git push -u origin main
2022. 11. 18. 02:10
공부/오류
error: failed to push some refs to 'https://github.com/tenenger/-------------' ❓상황 git push -u origin main 명령어 입력시, 발생한 오류 🔎 원인 파악 현재 로컬 branch의 이름이 master인데, git hub에 push할때는 main branch를 push하겠다고 하니 컴퓨터가 오류를 내뱉는 것이었다. 그런데, 내 git hub 계정에는 초기 branch 이름을 main으로 설정했는데, 왜 master branch가 생겼을까 의문이 들었다. 알고보니, 예전 master branch를 clone을 해서 내 컴퓨터에 복사했기때문에, main branch가 아니라 master branch가 생긴것이었다. 참고로 알아두면 ..
오류 | props.children type(ft. react, typescript)
2022. 9. 16. 00:05
공부/오류
'{}' 형식에 'children' 속성이 없습니다. '{ children: Element; }' 유형에 'IntrinsicAttributes' 유형과 공통적인 속성이 없습니다. ❓상황 props.children type을 지정하기 위해, React.FC ( = FunctionComponent)을 사용할 때 발생한 오류 🔎 원인 파악 React.FC ( = FunctionComponent) 에 children type을 가지고 있지 않아서 발생한 오류 ✨ 해결 방법 PropsWithChildren을 type으로 사용한다.
오류 | mySQL load data infile 오류
2022. 8. 23. 13:18
공부/오류
Error Code: 1290. The MySQL server is running with the --secure-file-priv option so it cannot execute this statement ❓상황 mySQL workbench에서 load data infile 쿼리를 실행했을때 발생한 오류 🔎 원인 파악 mySQL에서는 기본적으로 파일을 로드할때, 지정된 경로에서만 로드되도록 설정되어 있다. mySQL 8.0 Command line Client 를 실행하고, show variables like 'secure_file_priv'를 입력하면 경로를 확인 할 수 있다. 내 .CSV 파일은 해당 경로가 아닌, 다른 경로에 있고 이를 mySQL에서 load해서 에러가 발생한 것이다. ✨ 해결 방..
오류 | props를 객체의 key로 사용할때 발생한 오류(ft. react, typescript )
2022. 8. 2. 02:21
공부/오류
Error: Component selectors can only be used in conjucntion with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform ❓상황 부모 컴포넌트로부터 props로 넘겨받은 prop을 객체의 key로 사용할 때 발생한 오류 🔎 원인 파악 key로 사용하는 값의 type을 지정해주지 않아서 발생한 문제 ✨ 해결 방법 key로 사용한 값의 type을 지정해준다.
오류 | emotion component selector 오류
2022. 7. 28. 10:27
공부/오류
Error: Component selectors can only be used in conjucntion with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform ❓상황 emotion/style를 이용하여, component selector를 이용하려고 할 때 발생한 오류 🔎 원인 파악 기본적으로 emotion은 css selector만 허용되기 때문에, 별도의 설정이 필요한 경우라면(나의 경우에는 component selector) babel파일을 생성해서 커스텀하면 된다고 한다. emotion 공식 문서에 @emotion/babel-plugin을 사용하라고 한다. ✨ 해결 방법 1. @e..