diff --git a/excalidraw-app/components/DebugCanvas.tsx b/excalidraw-app/components/DebugCanvas.tsx index 9538495b21..9df430376b 100644 --- a/excalidraw-app/components/DebugCanvas.tsx +++ b/excalidraw-app/components/DebugCanvas.tsx @@ -196,7 +196,7 @@ const renderBindings = ( zoom, dim, dim, - "red", + element.startBinding?.mode === "orbit" ? "red" : "black", ); } @@ -215,7 +215,7 @@ const renderBindings = ( zoom, dim, dim, - "red", + element.endBinding?.mode === "orbit" ? "red" : "black", ); } }