Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(ui): trim host from keysend pubkey
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed May 18, 2020
1 parent f46938b commit 010661c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/components/Form/LightningInvoiceInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Message } from 'components/UI'
import TextArea from './TextArea'
import messages from './messages'

const mask = value => (value ? value.trim() : value)
const mask = value => (value ? value.split('@')[0].trim() : value)

const validate = (intl, network, chain, value) => {
if (value) {
Expand Down

0 comments on commit 010661c

Please sign in to comment.