From 2e944aa296ee4dbe887bf4110d97e65a6788f2ee Mon Sep 17 00:00:00 2001 From: Davi-web Date: Sat, 23 Aug 2025 16:35:23 -0700 Subject: [PATCH] Increased initial board size --- hooks/useBoard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/useBoard.ts b/hooks/useBoard.ts index 1e705a9..4d2c583 100644 --- a/hooks/useBoard.ts +++ b/hooks/useBoard.ts @@ -4,7 +4,7 @@ import { createRoot } from "react-dom/client"; import { OnClickState } from "@/lib/enums"; const useBoard = () => { - const [size, setSize] = useState([22, 22]); + const [size, setSize] = useState([25, 25]); const [start, setStart] = useState([1, 1]); const [end, setEnd] = useState([size[0] - 2, size[1] - 2]); const [isDrawing, setIsDrawing] = useState(false);