()
| 1337 | store.dispatch(threadAdapterEvents.contextChanged({ context })); |
| 1338 | }, |
| 1339 | refresh(): void { |
| 1340 | const { sessionId, context } = store.getState(); |
| 1341 | if (!context) return; |
| 1342 | store.dispatch(threadRestEvents.listRequested({ sessionId })); |
| 1343 | }, |
| 1344 | refetchThreads(): void { |
| 1345 | const { sessionId, context } = store.getState(); |
| 1346 | if (!context) return; |
no test coverage detected
searching dependent graphs…