diff --git a/desktop/plugins/public/ui-debugger/components/Tree.tsx b/desktop/plugins/public/ui-debugger/components/Tree.tsx index 2c2f998a3..8dd8303bc 100644 --- a/desktop/plugins/public/ui-debugger/components/Tree.tsx +++ b/desktop/plugins/public/ui-debugger/components/Tree.tsx @@ -180,15 +180,6 @@ const MemoTreeItemContainer = React.memo( function IndentGuide({indentGuide}: {indentGuide: NodeIndentGuide}) { const verticalLinePadding = `${renderDepthOffset * indentGuide.depth + 8}px`; - const verticalLineStyle = `${ - indentGuide.style === 'ToParent' ? 'dashed' : 'solid' - }`; - const horizontalLineStyle = `${ - indentGuide.style === 'ToParent' ? 'dotted' : 'solid' - }`; - - const color = indentGuide.style === 'ToParent' ? '#B0B0B0' : '#C0C0C0'; - return (
{indentGuide.addHorizontalMarker && (
)}