Remove warnings

This commit is contained in:
nicolas.dorier
2020-06-26 20:52:39 +09:00
parent a0065bc2ba
commit f2b986a357
3 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ namespace BTCPayServer.Controllers
}
[HttpGet]
public async Task<IActionResult> GetNotificationDropdownUI()
public IActionResult GetNotificationDropdownUI()
{
return ViewComponent("NotificationsDropdown");
}
@@ -105,7 +105,7 @@ namespace BTCPayServer.Controllers
}
[HttpGet]
public async Task<IActionResult> Index(int skip = 0, int count = 50, int timezoneOffset = 0)
public IActionResult Index(int skip = 0, int count = 50, int timezoneOffset = 0)
{
if (!ValidUserClaim(out var userId))
return RedirectToAction("Index", "Home");