'use client'; import { useMemo } from 'react'; import type { EpicBucket, Incursion } from '../../lib/agent-sessions'; import { SessionFeedCard } from './session-feed-card'; interface SessionTaskFeedProps { feed: EpicBucket[]; incursions?: Incursion[]; selectedEpicId: string | null; onSelectTask: (id: string) => void; highlightTaskId?: string | null; } export function IncursionTicker({ incursions }: { incursions: Incursion[] }) { return (
Conflict Detected: {inc.agents.join(' & ')} overlapping in {inc.scope}
No sessions found
Try selecting a different epic bucket or check if any tasks are active.