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

@@ -51,7 +51,7 @@
scope.timeDurationHeight
)
"
:id="block.id"
:id="block.$id"
@click="selectBlock($event, scope, block)">
{{ boats[scope.columnIndex].name }}
<br />
@@ -113,7 +113,7 @@ const selectedDate = ref(today());
const { getAvailableIntervals } = useIntervalStore();
const calendar = ref<QCalendarDay | null>(null);
const now = ref(new Date());
let intervalId: string | number | NodeJS.Timeout | undefined;
let intervalId: ReturnType<typeof setInterval> | undefined;
onMounted(async () => {
await useBoatStore().fetchBoats();
@@ -125,8 +125,12 @@ onMounted(async () => {
onUnmounted(() => clearInterval(intervalId));
function handleSwipe({ ...event }) {
event.direction === 'right' ? calendar.value?.prev() : calendar.value?.next();
function handleSwipe({ direction }: { direction: string }) {
if (direction === 'right') {
calendar.value?.prev();
} else {
calendar.value?.next();
}
}
function reservationStyles(
reservation: Reservation,