diff --git a/lib/pages/invoice/invoice_info.dart b/lib/pages/invoice/invoice_info.dart index 66acd78..838a6aa 100644 --- a/lib/pages/invoice/invoice_info.dart +++ b/lib/pages/invoice/invoice_info.dart @@ -141,10 +141,6 @@ class _InvoiceInfoState extends State { text: _invoice.paymentMethod.name, ); - final receiptsBtn = LocalButton( - textKey: "invoice.btn_payment_receipt", - callBack: _cancel, - ); final cancelBtn = LocalButton( textKey: "invoice.cancel.btn", callBack: _cancel, @@ -185,7 +181,6 @@ class _InvoiceInfoState extends State { SizedBox( height: 10, ), - isCanceled ? Container() : receiptsBtn, isCanceled ? Container() : cancelBtn, ], ),