()
| 100 | } |
| 101 | |
| 102 | const getMinimumHeight = () => { |
| 103 | const outputCount = getOutputAnchors().length |
| 104 | // Use exactly 60px as minimum height |
| 105 | return Math.max(60, outputCount * 20 + 40) |
| 106 | } |
| 107 | |
| 108 | const getBackgroundColor = () => { |
| 109 | if (customization.isDarkMode) { |
no test coverage detected