Skip to content

Commit

Permalink
Merge pull request #203 from Clubber2024/dev
Browse files Browse the repository at this point in the history
Fix: summary
  • Loading branch information
naraeng authored Feb 17, 2025
2 parents 9f0bd68 + 6020217 commit cddb79f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/auth/AuthService.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const refreshAccessToken = async () => {
clearTokens();
if (error.response?.status === 403) {
if (onAuthErrorCallback) {
onAuthErrorCallback("세션이 만료되었습니다. 다시 로그인해주세요.");
onAuthErrorCallback("로그인 정보가 만료되었습니다. 다시 로그인해주세요.");
}
// window.location.href = "/login"; // 로그인 페이지로 이동
}
Expand Down
7 changes: 4 additions & 3 deletions src/component/summary/summary.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
.summary_container {
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-auto-rows: 300px;
grid-auto-rows: auto;
width: 80%;
border: solid 1px #0000001A;
border-radius: 10px;
Expand Down Expand Up @@ -56,7 +56,7 @@
.summary_container {
display: grid;
grid-template-columns: repeat(2, 1fr);
width: 80%;
width: 75%;
border: solid 1px #0000001A;
border-radius: 10px;
background-color: white;
Expand All @@ -65,7 +65,8 @@
}

.division_container {
height: 325px;
height: 330px;
grid-auto-rows: auto;
padding: 16px;
border-top: 1px solid #0000001A;
border-right: 1px solid #0000001A;
Expand Down

0 comments on commit cddb79f

Please sign in to comment.