style: fix Biome dead-code warnings from oRPC migration (CI lint gate)

This commit is contained in:
asepharyana
2026-08-16 14:51:47 +07:00
parent 726a8e116b
commit 38bda66933
7 changed files with 37 additions and 31 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ describe("chatbot tool definitions", () => {
] as const) {
const tool = byName.get(name);
expect(tool, `missing tool ${name}`).toBeDefined();
expect(tool!.function.parameters.required).toContain(required);
expect(tool?.function.parameters.required).toContain(required);
}
});