diff --git a/app/components/Form/Pay.js b/app/components/Form/Pay.js index 834d44fc..9e7e726a 100644 --- a/app/components/Form/Pay.js +++ b/app/components/Form/Pay.js @@ -14,17 +14,11 @@ import styles from './Pay.scss' class Pay extends Component { componentDidUpdate(prevProps) { const { - isOnchain, isLn, payform: { payInput }, fetchInvoice } = this.props - // If on-chain, focus on amount to let user know it's editable - if (isOnchain) { - this.amountInput.focus() - } - // If LN go retrieve invoice details if (prevProps.payform.payInput !== payInput && isLn) { fetchInvoice(payInput)