Fixed all type issues that were flagged in the IDE

This commit is contained in:
Francisco Gaona
2025-11-25 22:11:59 +01:00
parent 150edfaf41
commit 98a7edc665
12 changed files with 13378 additions and 298 deletions

View File

@@ -123,9 +123,9 @@
<script setup lang="ts">
const { api } = useApi()
const objects = ref([])
const objects = ref<any[]>([])
const loading = ref(true)
const error = ref(null)
const error = ref<string | null>(null)
const showCreateForm = ref(false)
const newObject = ref({
apiName: '',