diff --git a/app/(auth)/events/[eventId]/page.tsx b/app/(auth)/events/[eventId]/page.tsx index a6a2a57..c6d2f28 100644 --- a/app/(auth)/events/[eventId]/page.tsx +++ b/app/(auth)/events/[eventId]/page.tsx @@ -1,20 +1,24 @@ -/* eslint-disable @typescript-eslint/ban-ts-comment */ -import EventInfoDisplay from '@/components/EventInfoDisplay' +import EventDashboard from '@/components/events/EventDashboard' import { queries } from '@/lib/queries' import React from 'react' export default async function SingleEventPage({ params }: { params: { eventId: string }}) { const data = await queries.singleEvent(params.eventId) - console.log(data) return ( -
Event not found.
)} -- Notes -