From 89d364c6bda7dd8e0a1ac305724627c14101499c Mon Sep 17 00:00:00 2001 From: Starstrike Date: Thu, 1 May 2025 08:55:27 -0400 Subject: [PATCH] Fix Event type import conflict --- frontend/src/components/EventDetails.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/frontend/src/components/EventDetails.tsx b/frontend/src/components/EventDetails.tsx index 070bfdb..6675b13 100644 --- a/frontend/src/components/EventDetails.tsx +++ b/frontend/src/components/EventDetails.tsx @@ -16,17 +16,6 @@ import { Chip } from '@mui/material'; -interface Event { - id: number; - title: string; - description: string; - date: string; - location: string; - slug: string; - needed_items?: string[] | string; - wallpaper?: string; -} - const EventDetails: React.FC = () => { const { slug } = useParams<{ slug: string }>(); const navigate = useNavigate();