fix: cast setTimeout callback to any for type safety

This commit is contained in:
wxg0103 2025-09-19 10:47:09 +08:00
parent 15c4274294
commit 5c0dfa8c96

View File

@ -190,7 +190,7 @@ const startStreamingOutput = () => {
} else if (loading.value === false && currentDisplayIndex.value >= fullContent.value.length) {
stopStreaming()
}
}, 50) // 50ms
}, 50) as any
}
//