Bug fix on maintenance.service.ts

This commit is contained in:
Thomas Georgios Giannos 2024-04-04 16:16:45 +03:00
parent cfd508ccc5
commit 5ec8417f4e
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ export class MaintenanceService extends BaseService {
}
sendTenantTouchEvents(): Observable<any> {
const url = `${this.apiBase}/events/tenant/touch`;
const url = `${this.apiBase}/events/tenants/touch`;
return this.http
.delete<any>(url).pipe(
catchError((error: any) => throwError(error)));