diff --git a/README.md b/README.md index 4f21919d..825a550e 100644 --- a/README.md +++ b/README.md @@ -192,9 +192,17 @@ 송시은 - 배포 환경에서 Server Component 에러 메시지 미노출 이슈 + 배포 환경에서 Server Component 에러 메시지 미노출 이슈 김서연 + + 카카오 소셜 로그인, 회원가입 흐름 설계 전략: 인가코드 일회성 · 분리된 백엔드 · UX 혼란 해결 + 송시은 + + + Next.js BFF 환경에서 카카오 OAuth 인가 코드와 닉네임을 동시에 전달할 수 없는 문제 해결 + 송시은 + React Hook Form + Custom Input 유용민 @@ -301,10 +309,6 @@ URL Query 기반의 필터, 정렬, 페이지네이션 구현하기 박재현 - @@ -341,7 +345,7 @@ - Tailwind v4 @theme과 @utility + Tailwind v4 @theme · @utility · @layer utilities 송시은 diff --git a/src/app/api/auth/kakao/callback/route.ts b/src/app/api/auth/kakao/callback/route.ts index 3e1d2390..f1976995 100644 --- a/src/app/api/auth/kakao/callback/route.ts +++ b/src/app/api/auth/kakao/callback/route.ts @@ -1,3 +1,4 @@ +// 이 라우트는 최종 통합된 버전에서는 사용하지 않습니다. import { NextRequest, NextResponse } from 'next/server'; import type { OAuthResponse } from '@/domain/Auth/schemas/response'; diff --git a/src/app/global.css b/src/app/global.css index 255a6c01..ec42a89c 100644 --- a/src/app/global.css +++ b/src/app/global.css @@ -128,6 +128,4 @@ --font-size-50: 5rem; --font-size-100: 10rem; --font-size-150: 15rem; - - /* Animation */ } diff --git a/src/domain/Auth/actions/dummy b/src/domain/Auth/actions/dummy deleted file mode 100644 index e69de29b..00000000 diff --git a/src/domain/Auth/types/dummy b/src/domain/Auth/types/dummy deleted file mode 100644 index e69de29b..00000000 diff --git a/src/shared/components/ui/input/InputTrigger.tsx b/src/shared/components/ui/input/InputTrigger.tsx index c9bdd9b1..f68fe194 100644 --- a/src/shared/components/ui/input/InputTrigger.tsx +++ b/src/shared/components/ui/input/InputTrigger.tsx @@ -62,7 +62,7 @@ export default function InputTrigger({ onClick={togglePasswordVisibility} disabled={disabled} className={cn( - 'absolute inset-y-0 right-0 flex cursor-pointer items-center', + 'absolute right-0 flex cursor-pointer items-center', className, )} {...props}