We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f298eb commit aa4f3f0Copy full SHA for aa4f3f0
1 file changed
frontend/app/tictactoe/page.tsx
@@ -353,10 +353,10 @@ export default function TicTacToe() {
353
354
<div className="mt-4 text-center text-sm sm:text-base">
355
{gameWinner === 0 ? (
356
- <p>{currentTurn === myTacNumber ? "Your turn!" : "Opponent's turn"}</p>
+ <p>{currentTurn === myTacNumber ? "Your turn!" : "Opponent's turn"}</p>
357
) : gameWinner === -1 ? (
358
<div>
359
- <p className="font-bold text-xl sm:text-2xl mb-2">Cat's game! 🐱 It's a tie!</p>
+ <p className="font-bold text-xl sm:text-2xl mb-2">Cat's game! 🐱 It's a tie!</p>
360
{gameEnded && (
361
<p className="text-xs sm:text-sm text-gray-600 mt-2">
362
Redirecting to homepage in {redirectCountdown} second{redirectCountdown !== 1 ? "s" : ""}...
0 commit comments