From 3c5fadc5bb3537c9deee426548d9b9845616b205 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 23 Jul 2024 08:39:33 +0530 Subject: [PATCH] feat: pass missing props --- src/components/atoms/canvas.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/atoms/canvas.tsx b/src/components/atoms/canvas.tsx index a41b47dd..1e7f0fb6 100644 --- a/src/components/atoms/canvas.tsx +++ b/src/components/atoms/canvas.tsx @@ -23,7 +23,7 @@ export interface Coordinates { y: number; }; -const Canvas = ({ width, height, onCreateRef }: CanvasProps) => { +const Canvas = ({ width, height, onCreateRef, isClickConfirmed, resetClickConfirmation }: CanvasProps) => { const canvasRef = useRef(null); const { socket } = useSocketStore();