Skip to content

Commit

Permalink
fix: redirect_url 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dmdgpdi committed Dec 30, 2024
1 parent dc0262e commit d53f69b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend/techpick/src/app/(unsigned)/login/failed/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function LoginFailedPage() {
<div className={googleLoginContainer}>
<Link
className={loginLink}
href={`${process.env.NEXT_PUBLIC_API}/login/google?redirectUrl=${redirectUrl}`}
href={`${process.env.NEXT_PUBLIC_API}/login/google?redirect_url=${redirectUrl}`}
>
<Image
style={{ filter: 'brightness(100)' }}
Expand All @@ -54,7 +54,7 @@ export default function LoginFailedPage() {
<div className={kakaoLoginContainer}>
<Link
className={loginLink}
href={`${process.env.NEXT_PUBLIC_API}/login/kakao?redirectUrl=${redirectUrl}`}
href={`${process.env.NEXT_PUBLIC_API}/login/kakao?redirect_url=${redirectUrl}`}
>
<Image
style={{ filter: 'invert(100%)' }}
Expand Down
4 changes: 2 additions & 2 deletions frontend/techpick/src/app/(unsigned)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function LoginPage() {
<div className={googleLoginContainer}>
<Link
className={loginLink}
href={`${process.env.NEXT_PUBLIC_API}/login/google?redirectUrl=${redirectUrl}`}
href={`${process.env.NEXT_PUBLIC_API}/login/google?redirect_url=${redirectUrl}`}
>
<Image
style={{ filter: 'brightness(100)' }}
Expand All @@ -66,7 +66,7 @@ export default function LoginPage() {
<div className={kakaoLoginContainer}>
<Link
className={loginLink}
href={`${process.env.NEXT_PUBLIC_API}/login/kakao?redirectUrl=${redirectUrl}`}
href={`${process.env.NEXT_PUBLIC_API}/login/kakao?redirect_url=${redirectUrl}`}
>
<Image
style={{ filter: 'invert(100%)' }}
Expand Down

0 comments on commit d53f69b

Please sign in to comment.