From 778930015e8f8372bb6abda4048cda90133eff94 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Wed, 18 Jun 2025 00:24:28 -0400 Subject: [PATCH] refactor: Remove debug log from useSSEContext hook --- src/hooks/useSSEContext.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hooks/useSSEContext.js b/src/hooks/useSSEContext.js index a2399e3..af15e58 100644 --- a/src/hooks/useSSEContext.js +++ b/src/hooks/useSSEContext.js @@ -2,6 +2,5 @@ import { useContext } from 'react' import { SSEContext } from '../contexts/SSEContext' export const useSSEContext = () => { - console.log('=== useSSEContext called ===') return useContext(SSEContext) }