chore: remove unnecessary logs

This commit is contained in:
Akhileshrangani4 2024-11-09 17:57:48 -05:00
parent 81399cd351
commit b486d22111

View File

@ -541,8 +541,6 @@ export default function CodeEditor({
tab.id === activeFileId ? { ...tab, saved: true } : tab tab.id === activeFileId ? { ...tab, saved: true } : tab
) )
) )
console.log(`Saving file...${activeFileId}`)
console.log(`Saving file...${content}`)
socket?.emit("saveFile", { fileId: activeFileId, body: content }) socket?.emit("saveFile", { fileId: activeFileId, body: content })
} }
}, Number(process.env.FILE_SAVE_DEBOUNCE_DELAY) || 1000), }, Number(process.env.FILE_SAVE_DEBOUNCE_DELAY) || 1000),