Fix TypeScript error: ensure all code paths return a value in eachSheet callback

This commit is contained in:
Roo Code 2025-06-30 08:50:55 +00:00
parent d81f79d86b
commit 27c4e2c5e9

View file

@ -98,6 +98,8 @@ export async function extractTextFromXLSX(
if (!truncated) {
excelText += "\n"
}
return true
})
return excelText.trim()