5 lines
223 B
TypeScript
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()
|
|
} |