fix: type check error

This commit is contained in:
wxg0103 2025-03-24 10:26:33 +08:00
parent e7c2c9710a
commit 259d1c872b
2 changed files with 2 additions and 3 deletions

View File

@ -38,7 +38,6 @@
</template>
<script setup lang="ts">
import { el } from 'element-plus/es/locale'
import { ref, watch } from 'vue'
const props = defineProps({
time: {

View File

@ -412,7 +412,7 @@ const uploadFile = async (file: any, fileList: any) => {
})
}
const intervalId = ref<number | null>(null)
const intervalId = ref<any | null>(null)
const recorderTime = ref(0)
const startRecorderTime = ref(false)
const recorderLoading = ref(false)
@ -527,7 +527,7 @@ const uploadRecording = async (audioBlob: Blob) => {
//
if (props.applicationDetails.stt_autosend) {
nextTick(() => {
autoSendMessage()
autoSendMessage()
})
} else {
isMicrophone.value = false