Skip to content

Commit

Permalink
Fix: removed Amount zero check
Browse files Browse the repository at this point in the history
  • Loading branch information
AdarshRawat1 committed Dec 26, 2023
1 parent 4e03b51 commit c935d8f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/app/screens/ReceiveInvoice/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,7 @@ function ReceiveInvoice() {
fullWidth
primary
loading={loadingInvoice}
disabled={
loadingInvoice ||
!formData.amount ||
formData.amount === "0"
}
disabled={loadingInvoice || !formData.amount}
/>
</Container>
</fieldset>
Expand Down

0 comments on commit c935d8f

Please sign in to comment.