fix: ๐Ÿ› input add peer

This commit is contained in:
Anthony Potdevin 2020-08-06 13:27:09 +02:00
parent d48fcf3683
commit 56998d0c90
No known key found for this signature in database
GPG key ID: 4403F1DFBE779457

View file

@ -79,6 +79,7 @@ export const AddPeer = () => {
{!separate && (
<InputWithDeco
title={'Url'}
value={url}
inputCallback={value => setUrl(value)}
placeholder={'public_key@socket'}
/>
@ -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'}
/>