Skip to content

Commit

Permalink
[SOK-27] fix: lives
Browse files Browse the repository at this point in the history
  • Loading branch information
shamemask committed Sep 30, 2024
1 parent ab6292a commit 8be6f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/components/Game/Game.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const Game: React.FC = () => {

return (
<div className="game-container">
<div className="lives">Жизни: {lives}</div>
<div className="lives">{`Жизни: ${lives}`}</div>
<canvas ref={canvasRef} width={800} height={600}></canvas>

{!gameStarted ? (
Expand Down

0 comments on commit 8be6f1b

Please sign in to comment.