From 2d0af1f90ac3cd9974f4a394c9730b171cf43da9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=20Ku=CC=88ng?= Date: Wed, 3 May 2023 15:27:41 +0200 Subject: [PATCH] fix waypointVisited --- src/app/service/http/waypointVisited.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/service/http/waypointVisited.service.ts b/src/app/service/http/waypointVisited.service.ts index 41ee165..0ff3143 100644 --- a/src/app/service/http/waypointVisited.service.ts +++ b/src/app/service/http/waypointVisited.service.ts @@ -31,7 +31,7 @@ export class WaypointVisitedService { } createWaypoint(waypointvisited: WaypointsVisitedEntity) { - return this.http.post(WAYPOINT_VISITED, waypointvisited); + return this.http.post(WAYPOINT_VISITED, waypointvisited); } updateWaypoint(waypoint: WaypointsVisitedEntity, id: number) {