Skip to content

Commit 328e896

Browse files
committed
# <타입> : <제목> 형식으로 작성하며 제목은 최대 50글자 정도로만 입력
# 제목을 아랫줄에 작성, 제목 끝에 마침표 금지, 무엇을 했는지 명확하게 작성 fix: API 호출 URL 제거 및 불필요한 콘솔 제거 ################ # 본문(추가 설명)을 아랫줄에 작성 ################ # 꼬릿말(footer)을 아랫줄에 작성 (관련된 이슈 번호 등 추가) ################ # feat: 새로운 기능 추가 # fix: 버그 수정 # docs: 문서 수정 # test: 테스트 코드, 리팩토링 테스트 코드 추가 # refact: 코드 리팩토링 # style: 코드 formatting, 세미콜론 누락, 코드 자체의 변경이 없는 경우 # chore: 패키지 매니저 수정, 그 외 기타 수정 ex) .gitignore # design: CSS 등 사용자 UI 디자인 변경 # comment: 필요한 주석 추가 및 변경 # rename: 파일 또는 폴더 명을 수정하거나 옮기는 작업만인 경우 # remove: 파일을 삭제하는 작업만 수행한 경우 # !BREAKING CHANGE: 커다란 API 변경의 이유 # !HOTFIX: 급하게 치명적인 버그를 고쳐야 하는 경우 ################
1 parent 8d0df5f commit 328e896

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/shared/types/api/http-client.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ axiosClient.interceptors.response.use(
6969
originalRequest._retry = true;
7070

7171
try {
72-
await axios.post(`${import.meta.env.VITE_API_BASE_URL}/api/v1/oauth/reissue`, {}, { withCredentials: true });
72+
await axios.post(
73+
`${import.meta.env.VITE_API_BASE_URL}/api/v1/oauth/reissue`,
74+
{},
75+
{ withCredentials: true }
76+
);
7377
// 새 토큰이 쿠키에 재설정되었으므로 원래 요청 재시도
7478
return axiosClient(originalRequest);
7579
} catch (refreshError: unknown) {

src/shared/ui/EventCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const EventCard = ({
9898
<HashtagCarousel hashtagSlides={hashtags} onClick={e => e.stopPropagation()} />
9999
)}
100100

101-
{/* 대시보드 버튼 */}
101+
{/* 대시보드 버튼 */}
102102
{isHostPage && (
103103
<div className="flex justify-between items-center h-7">
104104
<TertiaryButton

0 commit comments

Comments
 (0)