()
| 108 | } |
| 109 | |
| 110 | const getMinimumHeight = () => { |
| 111 | const outputCount = getOutputAnchors().length |
| 112 | // Use exactly 60px as minimum height |
| 113 | return Math.max(60, outputCount * 20 + 40) |
| 114 | } |
| 115 | |
| 116 | const getBackgroundColor = () => { |
| 117 | if (customization.isDarkMode) { |
no test coverage detected