Skip to content

Commit

Permalink
Corrected Uri in deleteTimeseriesData
Browse files Browse the repository at this point in the history
  • Loading branch information
isciaberger committed Dec 9, 2024
1 parent 6615153 commit 2def2f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/app/lib/services/http_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ class HttpService {
String caseId,
) {
return _client.delete(
Uri.parse("$backendUrl/$workshopId/cases/$caseId/timeseries/$dataId"),
Uri.parse(
"$backendUrl/$workshopId/cases/$caseId/timeseries_data/$dataId",
),
headers: getAuthHeaderWith(token),
);
}
Expand Down

0 comments on commit 2def2f8

Please sign in to comment.