()
| 560 | const frameHeight = () => latestFrame()?.height ?? 1080; |
| 561 | |
| 562 | const availableWidth = () => |
| 563 | Math.max(debouncedBounds().width - padding * 2, 0); |
| 564 | const availableHeight = () => |
| 565 | Math.max(debouncedBounds().height - padding * 2, 0); |
| 566 |
no outgoing calls
no test coverage detected