diff --git a/BTCPayServer/Views/Invoice/ListInvoices.cshtml b/BTCPayServer/Views/Invoice/ListInvoices.cshtml index 5cf8ad89c..c5f2c78aa 100644 --- a/BTCPayServer/Views/Invoice/ListInvoices.cshtml +++ b/BTCPayServer/Views/Invoice/ListInvoices.cshtml @@ -75,9 +75,9 @@ @{ - var storeIds = String.Join( + var storeIds = string.Join( "", - Model.StoreIds.Select(storeId => string.Format(",storeid:{0}", storeId)) + Model.StoreIds.Select(storeId => $",storeid:{storeId}") ); } @@ -116,7 +116,7 @@