Skip to content

Commit

Permalink
Merge pull request #222 from oreumi-dreamer/jihun
Browse files Browse the repository at this point in the history
회원 정보 페이지에서 Google로 로그인을 인식하지 못하는 문제 수정 외 2건
  • Loading branch information
jihun-io authored Dec 19, 2024
2 parents f60451e + e3a4a4e commit 3cae19b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/account/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function Account() {
<dd className={styles["info-value"]}>{userName}</dd>
<dt className={styles["info-label"]}>계정 유형</dt>
<dd className={styles["info-value"]}>
{via === "google" ? "Google 계정" : "이메일 계정"}
{via === "google.com" ? "Google 계정" : "이메일 계정"}
</dd>
</dl>
</section>
Expand Down
1 change: 1 addition & 0 deletions src/components/auth/AuthStateHandler.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const authRoutes = {
"/account",
"/account/modify-email",
"/account/modify-password",
"/tomong",
],

// 인증 체크를 하지 않는 페이지
Expand Down
2 changes: 1 addition & 1 deletion src/components/login/SocialLogin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export default function SocialLogin() {
src="/images/google-logo.svg"
width={40}
height={40}
alt="google 로그인"
alt="Google로 로그인"
/>
</button>
</div>
Expand Down

0 comments on commit 3cae19b

Please sign in to comment.