© 2026 Hedgehog Software, LLC
async function fetchFn(url: string): Promise<FetchResult> { const { data, error } = await useFetch(url) return { data, error } }