Skip to content

Commit

Permalink
fix timer
Browse files Browse the repository at this point in the history
  • Loading branch information
faizov committed May 31, 2024
1 parent a4545c0 commit 014ad3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useEffect, useState } from 'react';
import { useAtom } from 'jotai';
import { GAME_OVER } from '@/feature/game/consts';

const totalTimeGame = 10 * 10 * 1000;
const totalTimeGame = 10 * 60 * 1000;

export const GameTimer = () => {
const [gameOver, setGameOver] = useAtom(GAME_OVER);
Expand Down

0 comments on commit 014ad3b

Please sign in to comment.