fix waypointVisited

This commit is contained in:
2023-05-03 15:27:41 +02:00
parent c8cfe80241
commit 2d0af1f90a

View File

@@ -31,7 +31,7 @@ export class WaypointVisitedService {
}
createWaypoint(waypointvisited: WaypointsVisitedEntity) {
return this.http.post<WaypointsEntity>(WAYPOINT_VISITED, waypointvisited);
return this.http.post<WaypointsVisitedEntity>(WAYPOINT_VISITED, waypointvisited);
}
updateWaypoint(waypoint: WaypointsVisitedEntity, id: number) {