Skip to content

Commit

Permalink
Merge branch 'main' into others/유저-토너먼트-전적-페이지-ui-변경-#1160
Browse files Browse the repository at this point in the history
  • Loading branch information
Clearsu authored Dec 14, 2023
2 parents b60f97b + 685aa84 commit 1056016
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions components/tournament/TournamentMatch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ function TournamentMatchParty({
}`}
onMouseEnter={() => onMouseEnter(party.id)}
onClick={() => onPartyClick(party, false)}
onTouchStart={() => {
onPartyClick(party, false);
}}
>
<PlayerImage
src={party.picture ?? '/image/match_qustion.png'}
Expand Down
1 change: 0 additions & 1 deletion pages/tournament.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export default function Tournament() {
instance
.get('/pingpong/tournaments?size=20&page=1&status=LIVE')
.then((res) => {
console.log(res.data.tournaments[0].tournamentId);
setOpenTournamentId(res.data.tournaments[0].tournamentId);
return res.data;
}),
Expand Down

0 comments on commit 1056016

Please sign in to comment.