From d842bc02adbf5a05f8f4fcd727b71e510bb50a30 Mon Sep 17 00:00:00 2001 From: "felix.zoesch" Date: Mon, 15 Dec 2025 12:14:42 +0100 Subject: [PATCH] Remove unused imports in EventFeed.tsx --- frontend/src/components/EventFeed.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/EventFeed.tsx b/frontend/src/components/EventFeed.tsx index da9011d..abd368e 100644 --- a/frontend/src/components/EventFeed.tsx +++ b/frontend/src/components/EventFeed.tsx @@ -4,8 +4,7 @@ import React, { useEffect, useState } from 'react'; import EventCard from './EventCard'; import FilterButtons from './FilterButtons'; import AgentsGraph from './AgentsGraph'; -import type { Event, FilterType, EventType } from '../types'; -import { EVENT_FILTER_MAP } from '../types'; +import type { Event, FilterType } from '../types'; interface EventFeedProps { events: Event[];