remove various log statements

This commit is contained in:
Hayden 2023-01-28 10:53:17 -09:00
parent 2742bb9c9e
commit 80f7ea2ae9
No known key found for this signature in database
GPG key ID: 17CF79474E257545
3 changed files with 0 additions and 5 deletions

View file

@ -19,7 +19,6 @@
});
function setViewPreference(view: ViewType) {
console.log("setViewPreference", view);
preferences.value.itemDisplayView = view;
}
</script>

View file

@ -114,8 +114,6 @@
entry.date = new Date(e.date);
entry.description = e.description;
entry.cost = e.cost;
console.log(e);
}
async function editEntry() {

View file

@ -1,7 +1,5 @@
export default defineNuxtPlugin(nuxtApp => {
nuxtApp.hook("page:finish", () => {
console.log(document.body);
document.body.scrollTo({ top: 0 });
console.log("page:finish");
});
});