From 464b0f9c7387a11dd4e9f388da000d100a4a0918 Mon Sep 17 00:00:00 2001 From: Haoyu Xu Date: Sun, 3 Aug 2025 12:42:30 +0800 Subject: [PATCH] fix: remove console.log in voice.js --- apps/showcase/src/components/voice.js | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/showcase/src/components/voice.js b/apps/showcase/src/components/voice.js index ed3fb97..3f4bea3 100644 --- a/apps/showcase/src/components/voice.js +++ b/apps/showcase/src/components/voice.js @@ -260,7 +260,6 @@ export default class Voice { list = list.filter((item) => item !== 'CN_043') } const id = list[Math.floor(Math.random() * list.length)] - console.log(id, list, this.#config.language) return id === this.#voice.id.last ? getVoiceId() : id } this.#playVoice(getVoiceId())