Skip to content

Commit

Permalink
remove auto play
Browse files Browse the repository at this point in the history
  • Loading branch information
webdevcody committed Oct 16, 2024
1 parent e904b95 commit 5fbae25
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/games/[gameId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ export default function GamePage({ params }: { params: { gameId: string } }) {
<p className="ml-4">Game starting...</p>
</div>
) : (
results.map((result) => (
<Result autoPlay={true} result={result} key={result._id} />
))
results.map((result) => <Result result={result} key={result._id} />)
)}
</div>
</div>
Expand Down

0 comments on commit 5fbae25

Please sign in to comment.