Removed logging

master
Keith Irwin 2022-09-13 11:00:08 -06:00
parent f611b72234
commit 3390598bb7
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
1 changed files with 0 additions and 3 deletions

View File

@ -19,7 +19,6 @@ function PeerList() {
// Initial loading
self.getUser = async () => {
console.log(`Getting user...`)
let res; try {
res = await fetch(`${API_URL}/`)
} catch (err) {
@ -35,13 +34,11 @@ function PeerList() {
console.error('Failed to parse JSON!')
if (err) console.error(err)
}
console.log(user)
self.peers(
user.peers.sort(
(a,b) => a.ipv4.split('.')[3] - b.ipv4.split('.')[3])
.map( (i)=>new Peer(i))
)
console.log(self.peers())
self.token = user.token
}
}