From c6d4440cc58995684962622726bca78798caab0e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 20 Feb 2019 23:49:54 -0500 Subject: [PATCH] no async --- src/Admin/Controllers/ToolsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Admin/Controllers/ToolsController.cs b/src/Admin/Controllers/ToolsController.cs index 5c248c2f8..5cb424708 100644 --- a/src/Admin/Controllers/ToolsController.cs +++ b/src/Admin/Controllers/ToolsController.cs @@ -20,7 +20,7 @@ namespace Bit.Admin.Controllers _globalSettings = globalSettings; } - public async Task ChargeBraintree() + public IActionResult ChargeBraintree() { return View(new ChargeBraintreeModel()); }