Remove unused imports in EventFeed.tsx

This commit is contained in:
felix.zoesch
2025-12-15 12:14:42 +01:00
parent d9459b1107
commit d842bc02ad

View File

@@ -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[];