From c935d8f7f83d7430f070f69bdc880ecc2e318914 Mon Sep 17 00:00:00 2001 From: Adarsh Rawat Date: Tue, 26 Dec 2023 22:23:48 +0530 Subject: [PATCH] Fix: removed Amount zero check --- src/app/screens/ReceiveInvoice/index.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/app/screens/ReceiveInvoice/index.tsx b/src/app/screens/ReceiveInvoice/index.tsx index f9d129e92f..787ba6a599 100644 --- a/src/app/screens/ReceiveInvoice/index.tsx +++ b/src/app/screens/ReceiveInvoice/index.tsx @@ -266,11 +266,7 @@ function ReceiveInvoice() { fullWidth primary loading={loadingInvoice} - disabled={ - loadingInvoice || - !formData.amount || - formData.amount === "0" - } + disabled={loadingInvoice || !formData.amount} />