tweaked a few things to mitigate errors

This commit is contained in:
2026-02-07 13:39:38 -05:00
parent d6bb2863c2
commit 76bf93b790
2 changed files with 3 additions and 3 deletions

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')