export const useEvents = (config?: SWRConfiguration<EventsResponse>) => {
  const { data, error, isValidating } = useSWR<EventsResponse, unknown>(
    '/api/v1.2/events.json',
    proxyAPI.fetchEvents,
    config,