Fix missing point

Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
This commit is contained in:
Mark Tolmacs 2024-09-20 21:33:08 +02:00
parent b4cb314090
commit 41885b4bb3
No known key found for this signature in database

View file

@ -67,7 +67,7 @@ export const renderRemoteCursors = ({
}) => { }) => {
// Paint remote pointers // Paint remote pointers
for (const [socketId, pointer] of renderConfig.remotePointerViewportCoords) { for (const [socketId, pointer] of renderConfig.remotePointerViewportCoords) {
let { x, y } = pointer; let [x, y] = pointer;
const collaborator = appState.collaborators.get(socketId); const collaborator = appState.collaborators.get(socketId);