From 4e12e02bc805170e6b03d33e0ef894b2a3021fb3 Mon Sep 17 00:00:00 2001 From: Rory& Date: Sun, 1 Jun 2025 11:13:55 +0200 Subject: Add alarm endpoints, basic budget routes, spend history --- testFrontend/SafeNSound.Sdk/WrappedHttpClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testFrontend/SafeNSound.Sdk/WrappedHttpClient.cs') diff --git a/testFrontend/SafeNSound.Sdk/WrappedHttpClient.cs b/testFrontend/SafeNSound.Sdk/WrappedHttpClient.cs index 2398a0b..e4b4500 100644 --- a/testFrontend/SafeNSound.Sdk/WrappedHttpClient.cs +++ b/testFrontend/SafeNSound.Sdk/WrappedHttpClient.cs @@ -324,10 +324,10 @@ public class WrappedHttpClient return await SendAsync(request, cancellationToken); } - public async Task DeleteAsync(string url) + public async Task DeleteAsync(string url) { var request = new HttpRequestMessage(HttpMethod.Delete, url); - await SendAsync(request); + return await SendAsync(request); } public async Task DeleteAsJsonAsync(string url, T payload) -- cgit 1.5.1