#179-suspensions #188

Merged
Ajdj100 merged 13 commits from #179-suspensions into main 2026-02-12 08:32:04 -06:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 76bf93b790 - Show all commits

View File

@@ -58,7 +58,7 @@ const fallbackInitials = {
const props = defineProps<{
readOnly: boolean,
data: ApplicationData,
data: ApplicationData | null,
}>()
const emit = defineEmits(['submit']);

View File

@@ -33,7 +33,7 @@ if (import.meta.env.VITE_DISABLE_GLITCHTIP === "true") {
});
}
app.component("FormInput", FormInput)
app.component("FormCheckbox", FormCheckbox)
// app.component("FormInput", FormInput)
// app.component("FormCheckbox", FormCheckbox)
app.mount('#app')