Remove console.log statement in App.vue

This commit is contained in:
Douglas Barone 2024-01-24 15:50:48 -04:00
parent f5f3376aea
commit ad64184e76

View File

@ -36,7 +36,6 @@ onBeforeMount(async () => {
const events = new EventSource(eventURI)
events.onmessage = async event => {
console.log('Event:', event)
await appStore.fetchPrinters()
}
})