Skip to content

Commit de8683e

Browse files
author
1bcMax
committed
fix: prettier formatting in proxy.ts
1 parent d071dbe commit de8683e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/proxy.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2700,9 +2700,9 @@ async function proxyRequest(
27002700
"memory_search",
27012701
]);
27022702
const originalCount = (parsed.tools as unknown[]).length;
2703-
parsed.tools = (
2704-
parsed.tools as Array<{ function?: { name?: string } }>
2705-
).filter((t) => !OPENCLAW_INTERNAL_TOOLS.has(t?.function?.name ?? ""));
2703+
parsed.tools = (parsed.tools as Array<{ function?: { name?: string } }>).filter(
2704+
(t) => !OPENCLAW_INTERNAL_TOOLS.has(t?.function?.name ?? ""),
2705+
);
27062706
const removed = originalCount - (parsed.tools as unknown[]).length;
27072707
if (removed > 0) {
27082708
console.log(

0 commit comments

Comments
 (0)