From f3f39256523bab8ae13055261b5d912e3ad03bb8 Mon Sep 17 00:00:00 2001 From: UnEpicier Date: Mon, 19 Feb 2024 18:21:05 +0100 Subject: [PATCH] :hammer: Fix eslint warnings --- src/components/Stats/Timer/Timer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Stats/Timer/Timer.tsx b/src/components/Stats/Timer/Timer.tsx index b9302f4..318ff67 100644 --- a/src/components/Stats/Timer/Timer.tsx +++ b/src/components/Stats/Timer/Timer.tsx @@ -68,7 +68,7 @@ const Timer = () => { saveToLocalStorage(displayedTime, gameState.difficulty as Difficulty, gameState.gridSize); } } - }, [intervalId, gameState.endType, setGameState, displayedTime]); + }, [intervalId, gameState.endType, gameState.difficulty, gameState.gridSize, setGameState, displayedTime]); return (