Skip to content

Commit

Permalink
!Hotfix(rank): 0페이지 랭킹 불러오기
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobbymin committed Oct 15, 2024
1 parent 8dc385a commit 3c67f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/rank/components/all/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const AllRank = () => {

useEffect(() => {
const fetchUserRanking = async () => {
const response: UserRankingResponse = await getUserRanking(1, 10);
const response: UserRankingResponse = await getUserRanking(0, 10);
const pageData = response.data;
const allUserData: User[] = pageData.data.map((user: UserData) => ({
...user,
Expand Down

0 comments on commit 3c67f00

Please sign in to comment.