(event: Event)
| 214 | |
| 215 | useEffect(() => { |
| 216 | const update = (event: Event) => { |
| 217 | setOrgOnboardingVisible(Boolean((event as CustomEvent<{ visible?: boolean }>).detail?.visible)); |
| 218 | }; |
| 219 | |
| 220 | window.addEventListener(orgOnboardingVisibilityEvent, update); |
| 221 |
no outgoing calls
no test coverage detected