()
| 117 | return undefined; |
| 118 | } |
| 119 | const callback = () => { |
| 120 | setIsCompact( |
| 121 | document.documentElement.scrollTop >= window.innerHeight / 2, |
| 122 | ); |
| 123 | }; |
| 124 | callback(); |
| 125 | window.addEventListener('scroll', callback, { passive: true }); |
| 126 | return () => window.removeEventListener('scroll', callback); |
no outgoing calls