chore: Update dependencies to latest
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 1m17s

fix: claude fixes to various errors
This commit is contained in:
2026-03-15 10:41:12 -04:00
parent 5d08b1c927
commit 67c7a3c050
44 changed files with 14292 additions and 8939 deletions

View File

@@ -48,7 +48,6 @@ import {
createNativeLocaleFormatter,
getEndOfWeek,
getStartOfWeek,
getWeekdaySkips,
parseTimestamp,
today,
} from '@quasar/quasar-ui-qcalendar';
@@ -63,10 +62,6 @@ const weekdays = reactive([1, 2, 3, 4, 5, 6, 0]),
dayFormatter = dayFormatterFunc(),
weekdayFormatter = weekdayFormatterFunc();
const weekdaySkips = computed(() => {
return getWeekdaySkips(weekdays);
});
const parsedStart = computed(() =>
getStartOfWeek(
parseTimestamp(selectedDate.value || today()) as Timestamp,
@@ -93,7 +88,7 @@ const days = computed(() => {
parsedStart.value,
parsedEnd.value,
today2.value as Timestamp,
weekdaySkips.value
weekdays
);
}
return [];