From 745f63738f705f40ef25e240b027872fb45737f8 Mon Sep 17 00:00:00 2001 From: namdaeun Date: Fri, 20 Feb 2026 21:04:00 +0900 Subject: [PATCH 1/3] =?UTF-8?q?hotfix:=20=ED=99=9C=EB=8F=99=20=EA=B8=B0?= =?UTF-8?q?=EC=88=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/generation.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/utils/generation.ts b/src/utils/generation.ts index d281fa23..d137e99d 100644 --- a/src/utils/generation.ts +++ b/src/utils/generation.ts @@ -1,3 +1,11 @@ -export const ACTIVITY_GENERATION: string = '38'; +export const ACTIVITY_GENERATION: string = '37'; -export const GENERATION_LIST: string[] = ['38', '37', '36', '35', '34', '33', '32']; +export const GENERATION_LIST: string[] = [ + '38', + '37', + '36', + '35', + '34', + '33', + '32', +]; From 7888dde4ab9671df1fd34a0dfe7e6fbe30c938f8 Mon Sep 17 00:00:00 2001 From: namdaeun Date: Fri, 20 Feb 2026 21:05:42 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=ED=99=9C=EB=8F=99=20=EA=B8=B0?= =?UTF-8?q?=EC=88=98=20=EB=8B=A4=EC=8B=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/generation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/generation.ts b/src/utils/generation.ts index d137e99d..aedf7a84 100644 --- a/src/utils/generation.ts +++ b/src/utils/generation.ts @@ -1,4 +1,4 @@ -export const ACTIVITY_GENERATION: string = '37'; +export const ACTIVITY_GENERATION: string = '38'; export const GENERATION_LIST: string[] = [ '38', From 23371bb4409ed589606cd7657df9e1ca22a15d47 Mon Sep 17 00:00:00 2001 From: namdaeun Date: Fri, 20 Feb 2026 21:23:33 +0900 Subject: [PATCH 3/3] =?UTF-8?q?hotfix:=20401=20refresh=20token=20=EC=8B=A4?= =?UTF-8?q?=ED=8C=A8=EC=8B=9C=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/api/client.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/services/api/client.ts b/src/services/api/client.ts index c9c82b24..02ad2e94 100644 --- a/src/services/api/client.ts +++ b/src/services/api/client.ts @@ -61,7 +61,17 @@ client.interceptors.response.use( } return { status: 400, error: '요청을 처리하는데 실패했어요' }; case 401: - await reissueAccessToken(); + if (error?.config?.headers['Reissue-Request']) { + destroyToken('ACCESS'); + window.location.replace('/'); + return; + } + const reissueResult = await reissueAccessToken(); + if (reissueResult && !reissueResult.success) { + destroyToken('ACCESS'); + window.location.replace('/'); + return; + } if (error.config) { return client(error.config); }