Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Tip Try Coding Plans. Let us write the prompt for your AI agent so you can ship faster (with fewer bugs). 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 |
Summary of ChangesHello @nonoididnt, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! 이 PR은 관리자가 개별 회원의 상세 정보를 조회할 수 있는 새로운 UI를 구현합니다. 이를 통해 관리자는 회원의 기본 프로필 정보, 관심사 카테고리, 그리고 해당 회원이 참여하거나 작성한 모임, 책 이야기, 소식, 신고 내역 등을 한눈에 파악할 수 있습니다. 이는 관리자 기능의 확장성을 높이고 사용자 관리를 더욱 효율적으로 할 수 있도록 지원합니다. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
| <dd className="body_1_2 text-Gray-7">{user.name}</dd> | ||
|
|
||
| <dt className="body_1_3 text-Gray-4">이름</dt> | ||
| <dd className="body_1_2 text-Gray-7">윤현일</dd> |
| import { useMyClubsQuery } from "@/hooks/queries/useClubQueries"; | ||
|
|
||
| const MyMeetingList = () => { | ||
| const { data, isLoading, isError } = useMyClubsQuery(); |
| <section className="w-[1040px] mx-auto pt-[80px]"> | ||
| <div className="flex items-start justify-between gap-10"> | ||
| <div className="flex-1"> | ||
| <AdminUserProfile /> |
There was a problem hiding this comment.
AdminUserProfile 컴포넌트가 현재 page.tsx에서 정의된 user 객체를 props로 받지 않고 있습니다. AdminUserProfile 내부에서 useProfileQuery를 사용하여 데이터를 가져오는 것으로 보입니다. 만약 AdminUserProfile이 [id] 라우트 파라미터에 해당하는 특정 사용자의 프로필을 표시해야 한다면, useProfileQuery에 id를 전달하거나 page.tsx에서 가져온 user 데이터를 props로 전달하여 일관성을 유지해야 합니다. 현재 page.tsx의 user 객체는 사용되지 않고 있습니다.
| isFetchingNextPage, | ||
| isLoading, | ||
| isError, | ||
| } = useMyInfiniteStoriesQuery(); |
| import MyMeetingCard from "./items/AdminMeetingCard"; | ||
| import { useMyClubsQuery } from "@/hooks/queries/useClubQueries"; | ||
|
|
||
| const MyMeetingList = () => { |
| const reports = [ | ||
| { | ||
| id: 1, | ||
| category: "일반", | ||
| reporterName: "hy_0716", | ||
| content: "부적절한 언어 사용이 있습니다.", | ||
| date: "2025.01.01", | ||
| }, | ||
| { | ||
| id: 2, | ||
| category: "욕설", | ||
| reporterName: "user123", | ||
| content: "커뮤니티 가이드 위반입니다.", | ||
| date: "2025.01.02", | ||
| }, |
| profileImgSrc = "/profile2.svg", | ||
| createdAt, | ||
| viewCount, | ||
| coverImgSrc = "/bookstorycard.svg", |
| className="flex items-center justify-center shrink-0" | ||
| > | ||
| <Image | ||
| src="/ant-design_more-outlined.svg" |
| "w-[1040px] h-[185px] p-[20px]", | ||
| "rounded-[8px] border border-Subbrown-4 bg-white", | ||
| "justify-between gap-[122px]", | ||
| id ? "cursor-pointer hover:opacity-80 transition-opacity" : "", | ||
| className, | ||
| ].join(" ")} |
| <div className="relative h-[24px] w-[24px] shrink-0"> | ||
| <Image | ||
| src="/profile.svg" | ||
| alt="profile" |
📌 개요 (Summary)
관리자 회원 상세 페이지 UI 구현
현재 더미 데이터를 기반으로 구현되었으며, API 연결 후 세부 UI 보완 예정
🛠️ 변경 사항 (Changes)
📸 스크린샷 (Screenshots)
(UI 변경 사항이 있다면 첨부해주세요)




✅ 체크리스트 (Checklist)
pnpm build)pnpm lint)