Skip to content

Commit

Permalink
Fix issue with uploading unmapped routes
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Dec 19, 2024
1 parent bce7b27 commit a990012
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class MissingPartOverlayComponent {

public async addMissingPartToOsm() {
try {
await firstValueFrom(this.httpClient.put(Urls.osm, this.feature));
await firstValueFrom(this.httpClient.put(Urls.osm, this.feature()));
this.toastService.success(this.resources.routeAddedSuccessfullyItWillTakeTime);
this.remove();
} catch (ex) {
Expand Down

0 comments on commit a990012

Please sign in to comment.