Tracked down a date bug. Also tried to optimize, but not sure it's necessary.
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m2s

This commit is contained in:
2024-05-17 20:41:26 -04:00
parent b506ab7ca9
commit adc34a116b
4 changed files with 110 additions and 92 deletions

View File

@@ -4,10 +4,7 @@
<script setup lang="ts">
import { defineComponent, onMounted } from 'vue';
import { useScheduleStore } from './stores/schedule';
import { useBoatStore } from './stores/boat';
import { useAuthStore } from './stores/auth';
import { useReservationStore } from './stores/reservation';
defineComponent({
name: 'OYS Borrow-a-Boat',
@@ -15,9 +12,5 @@ defineComponent({
onMounted(async () => {
await useAuthStore().init();
await useScheduleStore().fetchIntervalTemplates();
await useScheduleStore().fetchIntervals();
await useReservationStore().fetchReservations();
await useBoatStore().fetchBoats();
});
</script>