diff --git a/BTCPayServer/Controllers/UIStoresController.Dashboard.cs b/BTCPayServer/Controllers/UIStoresController.Dashboard.cs index 024a46d0ac..6bfd012167 100644 --- a/BTCPayServer/Controllers/UIStoresController.Dashboard.cs +++ b/BTCPayServer/Controllers/UIStoresController.Dashboard.cs @@ -61,7 +61,7 @@ public async Task Dashboard() } [HttpGet("{storeId}/lightning/{cryptoCode}/balance")] - public async Task LightningBalance(string storeId, string cryptoCode) + public IActionResult LightningBalance(string storeId, string cryptoCode) { var store = HttpContext.GetStoreData(); if (store == null) diff --git a/BTCPayServer/Controllers/UIWalletsController.cs b/BTCPayServer/Controllers/UIWalletsController.cs index 2a9e45b926..4b592dc29a 100644 --- a/BTCPayServer/Controllers/UIWalletsController.cs +++ b/BTCPayServer/Controllers/UIWalletsController.cs @@ -1359,7 +1359,7 @@ public class WalletReceiveViewModel public string CryptoCode { get; set; } public string Address { get; set; } public string PaymentLink { get; set; } - public string? ReturnUrl { get; set; } + public string ReturnUrl { get; set; } } public class SendToAddressResult