From cb391f08b9ac364b93b7cc5677935ffca5f49bef Mon Sep 17 00:00:00 2001 From: Umar Bolatov Date: Thu, 22 Sep 2022 23:17:50 -0700 Subject: [PATCH] Remove redundant exception status from invoice state label (#4151) --- BTCPayServer/Views/UIInvoice/Invoice.cshtml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/BTCPayServer/Views/UIInvoice/Invoice.cshtml b/BTCPayServer/Views/UIInvoice/Invoice.cshtml index aec941a3a..2528bd331 100644 --- a/BTCPayServer/Views/UIInvoice/Invoice.cshtml +++ b/BTCPayServer/Views/UIInvoice/Invoice.cshtml @@ -202,11 +202,6 @@ else { @Model.State - @if (Model.StatusException != InvoiceExceptionStatus.None) - { - @String.Format(" ({0})", Model.StatusException.ToString()) - ; - } }