remove console.logs

This commit is contained in:
William Buezas 2024-05-26 18:55:35 -03:00
parent bfba4875cc
commit 3cb17eeb66
3 changed files with 0 additions and 5 deletions

View File

@ -120,7 +120,6 @@ const refetchEvents = async () => {
};
onMounted(() => {
console.log('props.event', props.event);
if (props.event) {
dated.value = props.event?.dated;
excludeType.value =

View File

@ -94,8 +94,6 @@ const date = computed({
months.value.push(monthDate);
}
console.log('firstDay', firstDay.value);
console.log('lastDay', lastDay.value);
refreshEvents();
},
});

View File

@ -97,7 +97,6 @@ const deleteEvent = async (id) => {
};
const openIncludeForm = (event) => {
console.log('zone event panel EVENT: ', event);
formName.value = 'include';
emit('openZoneForm', {
date: event.dated,
@ -108,7 +107,6 @@ const openIncludeForm = (event) => {
onMounted(async () => {
weekdayStore.initStore();
console.log('weekdayStore', weekdayStore.getLocalesMap);
await nextTick();
await fetchData();
startParamsWatcher();