LOA backend refactor

This commit is contained in:
2025-12-10 21:30:41 -05:00
parent 468fd30514
commit 62defe5b6d
6 changed files with 172 additions and 66 deletions

View File

@@ -18,7 +18,8 @@ import { RangeCalendar } from "@/components/ui/range-calendar"
import { cn } from "@/lib/utils";
import { CalendarIcon } from "lucide-vue-next"
import Textarea from "@/components/ui/textarea/Textarea.vue";
import { LOARequest, submitLOA } from "@/api/loa"; // <-- import the submit function
import { submitLOA } from "@/api/loa"; // <-- import the submit function
import { LOARequest } from "@shared/types/loa";
const members = ref<Member[]>([])
const currentMember = ref<Member | null>(null);