refactor: Remove debug log from useSSEContext hook

This commit is contained in:
Mo Tarbin
2025-06-18 00:24:28 -04:00
parent fb8c45a86d
commit 778930015e

View File

@@ -2,6 +2,5 @@ import { useContext } from 'react'
import { SSEContext } from '../contexts/SSEContext'
export const useSSEContext = () => {
console.log('=== useSSEContext called ===')
return useContext(SSEContext)
}