diff --git a/pages/tournament.tsx b/pages/tournament.tsx index 3ea344ea9..ab72e3a88 100644 --- a/pages/tournament.tsx +++ b/pages/tournament.tsx @@ -79,11 +79,15 @@ export default function Tournament() {

Tournament

예정된 토너먼트
- {waitInfo.data?.tournaments.map((tournament) => ( -
- -
- ))} + {waitInfo.data?.tournaments.length === 0 ? ( +

예정된 토너먼트가 없습니다.

+ ) : ( + waitInfo.data?.tournaments.map((tournament) => ( +
+ +
+ )) + )}
진행중인 토너먼트
{openInfo.data && openInfo.data.tournaments?.length === 0 ? (