remove console log, fix no language select

This commit is contained in:
Sara
2023-10-15 19:19:13 +02:00
parent 0e8fa7df14
commit be7633b52b
2 changed files with 1 additions and 2 deletions

View File

@@ -34,7 +34,6 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => {
const text = textQueue[0];
setTranscriptText(text);
setTranslateText(translationQueue[0]);
console.log("displaying " + translateText);
const WPM_READING = 200 + textQueue.length * 10; // words per minute to read
const wordCount = text.split(/\s+/).length;