feat(use-problem): integrate WebSocket into problem hook

This commit is contained in:
cfngc4594 2025-03-23 23:49:34 +08:00
parent cea8748a4e
commit f246ff1a6d

View File

@ -39,12 +39,12 @@ export const useProblem = () => {
const { const {
hydrated, hydrated,
editor, editor,
monacoLanguageClient, webSocket,
globalLang, globalLang,
currentLang, currentLang,
currentValue, currentValue,
setEditor, setEditor,
setMonacoLanguageClient, setWebSocket,
setGlobalLang, setGlobalLang,
setCurrentLang, setCurrentLang,
setCurrentValue, setCurrentValue,
@ -111,9 +111,9 @@ export const useProblem = () => {
return { return {
hydrated, hydrated,
editor, editor,
monacoLanguageClient, webSocket,
setEditor, setEditor,
setMonacoLanguageClient, setWebSocket,
globalLang, globalLang,
currentLang, currentLang,
currentValue, currentValue,