()
| 233 | |
| 234 | let unsub: (() => void) | null = null |
| 235 | const cleanup = () => { |
| 236 | unsub?.() |
| 237 | unsub = null |
| 238 | } |
| 239 | |
| 240 | effect((onCleanup) => { |
| 241 | const currentCollection = collection() |
no outgoing calls
no test coverage detected
searching dependent graphs…