bug fixes
All checks were successful
Build and Publish / build-release (push) Successful in 4m19s

This commit is contained in:
2026-04-30 16:41:34 -05:00
parent 7d5e198156
commit 53bbdca525
16 changed files with 721 additions and 673 deletions

View File

@@ -1,6 +1,12 @@
<script setup lang="ts">
const search = ref('')
const { data, pending, refresh } = useProviders('/providers')
// Ensure data is refreshed when page loads
onMounted(() => {
refresh()
})
const providers = computed(() => {
const list = data.value?.data ?? []
if (!search.value) return list