Skip to content

Commit

Permalink
fix: 🐛 input add peer
Browse files Browse the repository at this point in the history
  • Loading branch information
apotdevin committed Aug 6, 2020
1 parent d48fcf3 commit 56998d0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/views/peers/AddPeer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export const AddPeer = () => {
{!separate && (
<InputWithDeco
title={'Url'}
value={url}
inputCallback={value => setUrl(value)}
placeholder={'public_key@socket'}
/>
Expand All @@ -87,11 +88,13 @@ export const AddPeer = () => {
<>
<InputWithDeco
title={'Public Key'}
value={key}
inputCallback={value => setKey(value)}
placeholder={'Public Key'}
/>
<InputWithDeco
title={'Socket'}
value={socket}
inputCallback={value => setSocket(value)}
placeholder={'Socket'}
/>
Expand Down

0 comments on commit 56998d0

Please sign in to comment.