'use client'; interface LiveIndicatorProps { isConnected: boolean; error?: string | null; } export function LiveIndicator({ isConnected, error }: LiveIndicatorProps) { if (error) { return (