Files
wedding-planner/lib/helper/fetchVenues.ts
2025-07-24 09:42:57 -04:00

5 lines
223 B
TypeScript

export async function fetchVenuesClient() {
const res = await fetch('/api/venues/fetch', { cache: 'no-store' }) // ensure no stale cache
if (!res.ok) throw new Error('Failed to fetch venues')
return res.json()
}