-
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
Feature/#224 팀 랭킹 r api 연결 #263
The head ref may contain hidden characters: "Feature/#224-\uD300_\uB7AD\uD0B9_R_API_\uC5F0\uACB0"
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.
👍
} else { | ||
swiper?.slideTo(idx); | ||
} | ||
}; | ||
|
||
useEffect(() => { | ||
getTeams().then((res) => { | ||
const teams = res.body.slice(0, 10).map((team: TeamRank, _: number) => { |
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.
큰 의미는 없을 듯 하지만 사용하는 변수라면 _ 대신 변수명으로 쓰면 좋을 듯 합니다
src/components/Garden3D/index.tsx
Outdated
{gardenInfos.map((info) => { | ||
const currX = (info.week - standX) * gap; | ||
const currZ = (info.date - 3) * gap; | ||
{gardenInfo.map((info, _) => { |
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.
요 _ 이건 뭘까용??
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.
그건 gardenInfos의 idx를 나타냅니다!
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.
굿!!
src/components/Garden3D/index.tsx
Outdated
garden.reduce((prev, value) => { | ||
return prev.contributeCount >= value.contributeCount ? prev : value; |
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.
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.
혹시 지금도 발생하나요?
저는 에러가 발생하지 않았어요..
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.
이제 안뜨네용!
관련 이슈
작업 요약
리뷰 요구 사항
15분