Skip to content

Commit a6bdcf7

Browse files
committed
fix: update alert message for expired authentication in AuthErrorFallback component
1 parent b3f0443 commit a6bdcf7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/ticket/src/shared/components/AuthErrorFallback

apps/ticket/src/shared/components/AuthErrorFallback/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ export const AuthErrorFallback = () => {
2323
window.location.reload();
2424
} else {
2525
// 재발급 실패 → 로그인
26-
alert("인증 시간이 만료되었습니다. 다시 로그인해주세요.");
26+
alert("인증이 만료되었습니다. 다시 로그인해주세요.");
2727
window.location.href = "/login";
2828
}
2929
} catch (error) {
3030
console.error("토큰 재발급 실패:", error);
31-
alert("인증 시간이 만료되었습니다. 다시 로그인해주세요.");
31+
alert("인증이 만료되었습니다. 다시 로그인해주세요.");
3232
window.location.href = "/login";
3333
}
3434
};

0 commit comments

Comments
 (0)