()
| 373 | |
| 374 | untracked(() => { |
| 375 | const clearContext = (): void => { |
| 376 | if (this.#hasDispatchedContext()) { |
| 377 | this.#store.setContext(null); |
| 378 | } |
| 379 | lastDispatchedContext = null; |
| 380 | this.#hasDispatchedContext.set(false); |
| 381 | }; |
| 382 | |
| 383 | // Disabled: stay inert. Clear any previously-dispatched context so an |
| 384 | // in-flight subscription is torn down and no further fetch is issued. |
nothing calls this directly
no test coverage detected