@@ -8,7 +8,7 @@ import FullPageLoader from "@/components/fullPageLoader";
88import { Alert , AlertDescription } from "@/components/ui/alert" ;
99import { Card , CardContent } from "@/components/ui/card" ;
1010import { useWebSocket } from "@/hooks/useWebSocket" ;
11- import { getErrorMessage , useAppSelector , useLazyGetLogsQuery } from "@/lib/store" ;
11+ import { getErrorMessage , useLazyGetLogsQuery } from "@/lib/store" ;
1212import type { ChatMessage , ChatMessageContent , ContentBlock , LogEntry , LogFilters , LogStats , Pagination } from "@/lib/types/logs" ;
1313import { AlertCircle , BarChart , CheckCircle , Clock , DollarSign , Hash } from "lucide-react" ;
1414import { useCallback , useEffect , useMemo , useRef , useState } from "react" ;
@@ -21,9 +21,6 @@ export default function LogsPage() {
2121 const [ fetchingLogs , setFetchingLogs ] = useState ( false ) ; // on pagination/filters change
2222 const [ error , setError ] = useState < string | null > ( null ) ;
2323 const [ showEmptyState , setShowEmptyState ] = useState ( false ) ;
24- const user = useAppSelector ( ( state ) => state . user ?. currentUser ) ;
25-
26- console . log ( "user" , user ) ;
2724
2825 // RTK Query lazy hook for manual triggering
2926 const [ triggerGetLogs ] = useLazyGetLogsQuery ( ) ;
0 commit comments