(users: any)
| 26 | }; |
| 27 | |
| 28 | export const fetchRetrievalSuccess = (users: any) => { |
| 29 | return { |
| 30 | type: 'FETCH_RETRIEVAL_SUCCESS', |
| 31 | payload: users, |
| 32 | }; |
| 33 | }; |
| 34 | |
| 35 | export const fetchAssistantFailure = (error: any) => { |
| 36 | return { |
no outgoing calls
no test coverage detected