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.
📓 스토리북 링크
바로가기
📌 관련 이슈
✨ PR 세부 내용
Feat
refresh token을 쿠키에 저장했습니다. 그 이유는 아래와 같습니다.
Lax
로 설정하여 CSRF 공격도 예방하였습니다.Refactor
apiClient 코드에서 타입 부분을 분리하였습니다.
스토리북에서 JSON 데이터를 가져올 때 타입 단언을 해주었는데 하드코딩 되어있었습니다. 이 부분을 타입 import 하였습니다.
로그아웃 시 새로 고침은 비동기, localStorage.clear는 동기로 작동하여 아래처럼 이미지를 못 불러오는 상태가 1초 정도 보였습니다. localStorage는 컴포넌트 상태와 주기가 다르기 때문입니다.
ImageWithFallback
코드에서 사용하는 모든 값은 prop으로 받기 때문에 state를 새로 만들 필요가 없다고 판단하였습니다. 따라서isFallback
state를 제거하고 단순 변수로 변경하였습니다.