()
| 213 | const el = headRef.current |
| 214 | if (!el) return |
| 215 | const check = () => setTruncated(el.scrollHeight - el.clientHeight > 1) |
| 216 | check() |
| 217 | const observer = new ResizeObserver(check) |
| 218 | observer.observe(el) |
no outgoing calls
no test coverage detected