remove console.log statements. Will be using debugger going forward.

This commit is contained in:
Nic D 2026-03-18 09:32:17 -04:00
parent 871b54a2c5
commit 83dd3a4de4
6 changed files with 0 additions and 6 deletions

View File

@ -14,7 +14,6 @@
const is_game_time = computed(() => email.value.includes('allumette'));
const onSubmitConnectionRequest = () => {
console.log('submit requested');
if (is_employee_email.value) return;
}

View File

@ -18,7 +18,6 @@
const handleSend = async () => {
const message = text.value.trim();
text.value = '';
console.log('message: ', message, ', length: ', message.length);
await chatbot_api.sendMessage(message);
};

View File

@ -28,7 +28,6 @@
const onClickedDownload = async () => {
const response = await timesheetApprovalApi.getTimesheetApprovalCSVReport(reportFilters.value);
console.log(response);
if (!response) {
Notify.create({
message: t('timesheet_approvals.print_report.download_failed'),

View File

@ -75,7 +75,6 @@
const onClickAttachment = async () => {
expenseStore.isShowingAttachmentDialog = true;
await expenseStore.getAttachmentURL(expense.value.attachment_key);
console.log('image url: ', expenseStore.attachmentURL);
}
const hideUpdateForm = () => {

View File

@ -86,7 +86,6 @@
if (option.value === 'SICK' || option.value === 'VACATION') {
const workedMinutes = getCurrentDailyMinutesWorked(currentShifts);
console.log('worked minutes: ', workedMinutes);
const expectedWorkedMinutes = expectedDailyHours * 60;
const leftOverMinutes = expectedWorkedMinutes - workedMinutes;

View File

@ -153,7 +153,6 @@
if (option.value === 'SICK' || option.value === 'VACATION') {
const workedMinutes = getCurrentDailyMinutesWorked(currentShifts);
console.log('worked minutes: ', workedMinutes);
const expectedWorkedMinutes = expectedDailyHours * 60;
const leftOverMinutes = expectedWorkedMinutes - workedMinutes;