Remove console.log

This commit is contained in:
ekzyis 2023-11-27 00:44:56 +01:00
parent c96eeb7668
commit 98faad9129
1 changed files with 0 additions and 1 deletions

View File

@ -29,7 +29,6 @@ const url = '/api/orders'
await fetch(url)
.then(r => r.json())
.then(body => {
console.log(body)
orders.value = body
})
.catch(console.error)