From 41885b4bb38a5ab8b2ba82e2647a1c4d3ada1824 Mon Sep 17 00:00:00 2001 From: Mark Tolmacs Date: Fri, 20 Sep 2024 21:33:08 +0200 Subject: [PATCH] Fix missing point Signed-off-by: Mark Tolmacs --- packages/excalidraw/clients.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/excalidraw/clients.ts b/packages/excalidraw/clients.ts index afff1eeb64..24eb2e3822 100644 --- a/packages/excalidraw/clients.ts +++ b/packages/excalidraw/clients.ts @@ -67,7 +67,7 @@ export const renderRemoteCursors = ({ }) => { // Paint remote pointers for (const [socketId, pointer] of renderConfig.remotePointerViewportCoords) { - let { x, y } = pointer; + let [x, y] = pointer; const collaborator = appState.collaborators.get(socketId);