Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,17 @@
<td>송시은</td>
</tr>
<tr>
<td><a href="https://github.com/codeit-FE-15-Part4-Team1/RoamReady/discussions/443">배포 환경에서 Server Component 에러 메시지 미노출 이슈 </a></td>
<td><a href="https://github.com/codeit-FE-15-Part4-Team1/RoamReady/discussions/443">배포 환경에서 Server Component 에러 메시지 미노출 이슈</a></td>
<td>김서연</td>
</tr>
<tr>
<td><a href="https://github.com/codeit-FE-15-Part4-Team1/RoamReady/discussions/500">카카오 소셜 로그인, 회원가입 흐름 설계 전략: 인가코드 일회성 · 분리된 백엔드 · UX 혼란 해결</a></td>
<td>송시은</td>
</tr>
<tr>
<td><a href="https://github.com/codeit-FE-15-Part4-Team1/RoamReady/discussions/306">Next.js BFF 환경에서 카카오 OAuth 인가 코드와 닉네임을 동시에 전달할 수 없는 문제 해결</a></td>
<td>송시은</td>
</tr>
<tr>
<td><a href="https://github.com/codeit-FE-15-Part4-Team1/RoamReady/discussions/250">React Hook Form + Custom Input</a></td>
<td>유용민</td>
Expand Down Expand Up @@ -301,10 +309,6 @@
<td><a href="https://github.com/codeit-FE-15-Part4-Team1/RoamReady/discussions/484">URL Query 기반의 필터, 정렬, 페이지네이션 구현하기</a></td>
<td>박재현</td>
</tr>
<!-- <tr>
<td><a href="https://github.com/Kabana-FE/Kabana/discussions/112">404 응답 상황 구분 및 처리 범위</a></td>
<td>송시은</td>
</tr> -->
</tbody>
</table>

Expand Down Expand Up @@ -341,7 +345,7 @@
<tr>
<td>
<a href="https://github.com/codeit-FE-15-Part4-Team1/RoamReady/discussions/83">
Tailwind v4 @theme과 @utility
Tailwind v4 @theme · @utility · @layer utilities
</a>
</td>
<td>송시은</td>
Expand Down
1 change: 1 addition & 0 deletions src/app/api/auth/kakao/callback/route.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// 이 라우트는 최종 통합된 버전에서는 사용하지 않습니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

주석만으로는 배포 차단 불가 — 라우트를 실제로 비활성화/제거하세요.

"최종 통합 버전에서는 사용하지 않음" 주석만으로는 프로덕션에서 URL이 노출될 수 있습니다. 최소한 기능 플래그나 NODE_ENV 가드로 실행 경로를 막아 주세요.

import { NextRequest, NextResponse } from 'next/server';

import type { OAuthResponse } from '@/domain/Auth/schemas/response';
Expand Down
2 changes: 0 additions & 2 deletions src/app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,4 @@
--font-size-50: 5rem;
--font-size-100: 10rem;
--font-size-150: 15rem;

/* Animation */
}
Empty file removed src/domain/Auth/actions/dummy
Empty file.
Empty file removed src/domain/Auth/types/dummy
Empty file.
2 changes: 1 addition & 1 deletion src/shared/components/ui/input/InputTrigger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down