diff --git a/src/features/TournamentList/index.tsx b/src/features/TournamentList/index.tsx
index 50ed262c..96215326 100644
--- a/src/features/TournamentList/index.tsx
+++ b/src/features/TournamentList/index.tsx
@@ -38,11 +38,11 @@ export const TournamentList = ({ matches }: TournamentTypeProps) => {
case isMobileDevice && isHomePage:
return (
<>
- {tournamentSort?.map((tournament) => (
+ {tournamentSort?.map(({ id }) => (
))}
>
@@ -50,11 +50,11 @@ export const TournamentList = ({ matches }: TournamentTypeProps) => {
case isHomePage && matches.length >= 12:
return (
<>
- {tournamentSort?.map((tournament) => (
+ {tournamentSort?.map(({ id }) => (
))}
>