mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Fix missing point
Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
This commit is contained in:
parent
b4cb314090
commit
41885b4bb3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue