-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[탈퇴, 팀관리] 탈퇴회원 상세정보, 팀관리 구현 #120
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
코드가 많아서 리뷰하기 힘들군요..
고생하셨습니다
// const [teamMemberModalOpen, setTeamMemberModalOpen] = useState(false); | ||
const [teamInfoModalOpen, setTeamInfoModalOpen] = useState(false); | ||
const [selectedTeamId, setSelectedTeamId] = useState<number | null>(null); | ||
const { data: getMe } = useGetMe(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
로그인 상태를 전역적으로 관리하고 있기 때문에 GetMe를 또 호출하지 않아도 됩니다
useLoginState에서 가져다 사용하는 것을 추천합니다
<div css={S.container}> | ||
<div css={S.contentContainer}> | ||
<Grid container spacing={2}> | ||
{teams?.map((team: Team) => ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
useSuspenseQuery를 사용하셨는데 teams가 undefined로도 추정되나요?
[#114 ] request
Please check if the PR fulfills these requirements
main
branch?Screenshot
Precautions (main files for this PR ...)
팀원 관리기능은 스프린트 종료시점까지 PR올리기가 힘들 것 같아, 추후 PR을 따로 올리도록 하겠습니다.