Skip to content

Commit

Permalink
fix(wrapped): fix copy-paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
ashhhleyyy committed Dec 3, 2023
1 parent 61126df commit 9dd7228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/players/[id]/wrapped.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const Slide7: React.FC<{player: PlayerProfile, static?: boolean, wrapped: Player
</DelayFade>

<ol>
{props.wrapped.days_played_games.map((game, i) => {
{props.wrapped.most_players_games.map((game, i) => {
if (i >= 5) return;
return <li key={i}>
<DelayFade static={props.static} delay={2400 + (i * 300)}>
Expand Down

0 comments on commit 9dd7228

Please sign in to comment.