Remove unused variables

This commit is contained in:
nicolas.dorier
2024-01-17 18:46:28 +09:00
parent c5a0e28420
commit f070b22355
39 changed files with 78 additions and 126 deletions

View File

@@ -42,9 +42,6 @@ public class UIPayoutProcessorsController : Controller
new PayoutProcessorService.PayoutProcessorQuery() { Stores = new[] { storeId } }))
.GroupBy(data => data.Processor);
var paymentMethods = HttpContext.GetStoreData().GetEnabledPaymentMethods(_btcPayNetworkProvider)
.Select(method => method.PaymentId).ToList();
return View(_payoutProcessorFactories.Select(factory =>
{
var conf = activeProcessors.FirstOrDefault(datas => datas.Key == factory.Processor)