Skip to content

Commit 259d1c8

Browse files
committed
fix: type check error
1 parent e7c2c97 commit 259d1c8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ui/src/components/ai-chat/component/chat-input-operate/TouchChat.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
</template>
3939

4040
<script setup lang="ts">
41-
import { el } from 'element-plus/es/locale'
4241
import { ref, watch } from 'vue'
4342
const props = defineProps({
4443
time: {

ui/src/components/ai-chat/component/chat-input-operate/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ const uploadFile = async (file: any, fileList: any) => {
412412
})
413413
}
414414
415-
const intervalId = ref<number | null>(null)
415+
const intervalId = ref<any | null>(null)
416416
const recorderTime = ref(0)
417417
const startRecorderTime = ref(false)
418418
const recorderLoading = ref(false)
@@ -527,7 +527,7 @@ const uploadRecording = async (audioBlob: Blob) => {
527527
// 自动发送
528528
if (props.applicationDetails.stt_autosend) {
529529
nextTick(() => {
530-
autoSendMessage()
530+
autoSendMessage()
531531
})
532532
} else {
533533
isMicrophone.value = false

0 commit comments

Comments
 (0)