update api text inpu is password

This commit is contained in:
duanfuxiang
2025-03-31 18:01:31 +08:00
parent 1e85149660
commit be5b7455b5
2 changed files with 16 additions and 12 deletions

View File

@@ -111,7 +111,6 @@ export async function regexSearchFiles(
let output: string
try {
output = await execRipgrep(rgPath, args)
console.log("output", output)
} catch (error) {
console.error("Error executing ripgrep:", error)
return "No results found"
@@ -161,9 +160,6 @@ export async function regexSearchFiles(
results.push(currentResult as SearchResult)
}
console.log("results", results)
console.log("currentResult", currentResult)
return formatResults(results, directoryPath)
}