Skip to content

Commit

Permalink
Disable tournament login until morning
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumplation committed Dec 3, 2024
1 parent 0677416 commit 94f8e1f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/InitialView/InitialView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,11 @@ const InitialView: FC<InitialViewProps> = ({ startGame }) => {

return (
<>
<Button className="w-96 h-16" onClick={handleTournamentLogin}>
Tournament Login
</Button>
{Date.now() > 1733238000000 && (
<Button className="w-96 h-16" onClick={handleTournamentLogin}>
Tournament Login
</Button>
)}
<Button className="w-96 h-16" onClick={showActionButtons}>
Free Play
</Button>
Expand Down

0 comments on commit 94f8e1f

Please sign in to comment.