()
| 1 | import axios from 'axios'; |
| 2 | |
| 3 | const getAuthConfig = () => ({ |
| 4 | headers: { |
| 5 | Authorization: `Bearer ${localStorage.getItem("access_token")}` |
| 6 | } |
| 7 | }) |
| 8 | |
| 9 | export const getCustomers = async () => { |
| 10 | try { |
no outgoing calls
no test coverage detected