Fixed all type issues that were flagged in the IDE
This commit is contained in:
@@ -53,9 +53,9 @@
|
||||
const route = useRoute()
|
||||
const { api } = useApi()
|
||||
|
||||
const object = ref(null)
|
||||
const object = ref<any>(null)
|
||||
const loading = ref(true)
|
||||
const error = ref(null)
|
||||
const error = ref<string | null>(null)
|
||||
|
||||
const fetchObject = async () => {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user