Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Screenshot
아이패드에서 새로고침시 아래와 같이 렌더링이 제대로 되지 않는 이슈가 있었습니다. 맥북 및 안드로이드 폰에서는 가끔 일어나는 듯하고 아이패드에서는 새로고침마다 반복됩니다. 현재 배포 환경에서 보이고 있는 오류이기 때문에 hotfix를 달았습니다.
KakaoTalk_Video_2023-11-13-09-29-46.mp4
에러의 근원은 프로젝트 페이지의 최근 출시된 프로젝트 목록 컴포넌트였습니다. 여기서는
useQuery
를 사용 중이고,suspense
를 통해 데이터 로딩시 fallback UI를 보여주고 있습니다. 하지만 데이터를 로드하는 부분이 서스펜스 바운더리 바깥에 있었기 때문에 에러가 발생하였습니다.Comment