remove console.logs

This commit is contained in:
Hayden 2022-10-03 21:45:12 -08:00
parent 76c6d25850
commit 1827c61314
4 changed files with 1 additions and 7 deletions

View file

@ -30,7 +30,6 @@
setTimeout(() => {
copied.value = false;
console.log(copied.value);
}, 1000);
}
</script>

View file

@ -30,11 +30,9 @@ export function useTheme(): UseTheme {
}
htmlEl.value = document.querySelector("html");
console.log(htmlEl.value);
});
const theme = computed(() => {
console.log(themeRef.value);
return themeRef.value;
});

View file

@ -16,14 +16,12 @@
const auth = useAuthStore();
if (auth.self === null) {
const { data, error } = await api.self();
const { data, error } = await api.user.self();
if (error) {
navigateTo("/");
}
auth.$patch({ self: data.item });
console.log(auth.self);
}
const itemsStore = useItemStore();

View file

@ -66,7 +66,6 @@
}
onMounted(() => {
console.log(groupToken.value);
if (groupToken.value !== "") {
registerForm.value = true;
}