build fixes

This commit is contained in:
mrfry 2023-03-26 20:28:25 +02:00
parent e2d304c130
commit 4980a02ec4
3 changed files with 7 additions and 9 deletions

View file

@ -154,7 +154,11 @@ export default function P2PInfo({ globalState, setGlobalState }) {
<div key={i} className={styles.peerContainer}>
<div>{peer.name}</div>
<div>
<a href={`https://${peer.host}:${peer.port}`} target={'_blank'}>
<a
href={`https://${peer.host}:${peer.port}`}
target={'_blank'}
rel="noreferrer"
>
{peer.host}:{peer.port}
</a>
</div>