Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Walkthrough
Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).Please share your feedback with us on this Discord post. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (3)
src/components/group/GroupCard.tsx (1)
67-67: border-radius에 'none'은 유효한 값이 아닙니다.
의도대로 모서리를 0으로 하려면 0을 사용하세요.적용 제안:
- border-radius: ${({ cardType }) => (cardType === 'search' ? `none` : '12px')}; + border-radius: ${({ cardType }) => (cardType === 'search' ? '0' : '12px')};src/components/search/GroupSearchResult.tsx (2)
103-103: isOngoing을 false로 고정 — 기획 확인 필요.
검색 카드에서 항상 “모집 마감” 라벨을 노출하려는 의도라면 OK입니다. 다만 기존 매핑(isOnGoing ← r.isPublic)은 의미가 달라 혼동 여지가 있습니다. 차후에는GroupCard가cardType === 'search'일 때 내부적으로 라벨을 결정하도록 하거나, 속성명을isRecruiting등으로 바꿔 의미 충돌을 제거하는 걸 권장합니다.
143-150: 스크롤바 숨김 처리 도입 — 접근성/플랫폼 확인 권장.
시각적 요구사항 충족은 되지만, Windows 환경에서 스크롤 존재 인지가 떨어질 수 있습니다. 키보드 스크롤(↑/↓, PgUp/PgDn) 및 마우스 휠 동작, 포커스 트랩 이슈 여부를 한번 점검 부탁.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
src/components/group/GroupCard.tsx(3 hunks)src/components/search/GroupSearchResult.tsx(2 hunks)
🔇 Additional comments (3)
src/components/group/GroupCard.tsx (3)
69-69: 검색 카드 패딩 변경 OK (하단 24px로 증가).
디자인 요구 반영으로 보이며 레이아웃 이탈 없으면 그대로 가도 됩니다. 검색 리스트 컨테이너(검색 결과 영역)와의 간격/스크롤 여백만 실제 화면에서 한번 확인 부탁.
114-114: min-width: 0 추가 적절.
플렉스 컨테이너 내 텍스트 생략(ellipsis) 이슈 방지에 필요합니다.
128-128: Title 폭 100% 지정 적절.
텍스트 오버플로 제어에 도움이 됩니다.
Summary by CodeRabbit