From e0cbb7bede4cb03b3e71339eef58af83a6a98911 Mon Sep 17 00:00:00 2001 From: daviogg Date: Fri, 16 Sep 2022 19:13:43 +0200 Subject: [PATCH] POS - CustomAmount disabled by default --- BTCPayServer/Services/Apps/PointOfSaleSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Services/Apps/PointOfSaleSettings.cs b/BTCPayServer/Services/Apps/PointOfSaleSettings.cs index f2b2d32ad..83e7a5fe1 100644 --- a/BTCPayServer/Services/Apps/PointOfSaleSettings.cs +++ b/BTCPayServer/Services/Apps/PointOfSaleSettings.cs @@ -40,7 +40,7 @@ namespace BTCPayServer.Services.Apps " inventory: 5\n" + " custom: true"; DefaultView = PosViewType.Static; - ShowCustomAmount = true; + ShowCustomAmount = false; ShowDiscount = true; EnableTips = true; RequiresRefundEmail = RequiresRefundEmail.InheritFromStore;