()
| 166 | dispatch({ |
| 167 | type: TERM_GROUP_EXIT_ACTIVE, |
| 168 | effect() { |
| 169 | const {sessions, termGroups} = getState(); |
| 170 | const {uid} = findBySession(termGroups, sessions.activeUid!)!; |
| 171 | dispatch(userExitTermGroup(uid)); |
| 172 | } |
| 173 | }); |
| 174 | }; |
| 175 | } |
nothing calls this directly
no test coverage detected