remove remnants of fetched from requests store

This commit is contained in:
Eric 2024-06-17 09:25:46 +10:00
parent 77cdbbe6e8
commit b788b2c692
No known key found for this signature in database

View File

@ -7,11 +7,10 @@ import StorageRequest from '@/components/StorageRequest.vue'
import SkeletonLoading from '@/components/SkeletonLoading.vue'
const requestsStore = useRequestsStore()
const { requests, loading, fetched } = storeToRefs(requestsStore)
const { requests, loading } = storeToRefs(requestsStore)
const route = useRoute()
const isLoading = computed(
() =>
!fetched.value ||
loading.value ||
!requests.value ||
requests.value.size === 0 ||