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);