| 19 | `; |
| 20 | |
| 21 | interface ProfileProps {} |
| 22 | |
| 23 | const Profile: React.FC<ProfileProps> = () => { |
| 24 | const { data, loading, error } = useQuery<GetMyTripsTypes.GetMyTrips>(GET_MY_TRIPS, { fetchPolicy: 'network-only' }); |
nothing calls this directly
no outgoing calls
no test coverage detected