chore(frontend): apply pre-commit formatting

This commit is contained in:
foreleven
2026-05-22 22:11:14 +08:00
parent ff4a3409c7
commit 55a4149be4
5 changed files with 12 additions and 7 deletions
+6 -3
View File
@@ -97,9 +97,12 @@ function createStaticClient(): LangGraphClient {
}) as typeof client.threads.update;
client.runs.list = (async () => []) as typeof client.runs.list;
client.runs.stream = async function* () {} as typeof client.runs.stream;
client.runs.joinStream =
async function* () {} as typeof client.runs.joinStream;
client.runs.stream = async function* () {
/* empty */
} as typeof client.runs.stream;
client.runs.joinStream = async function* () {
/* empty */
} as typeof client.runs.joinStream;
return client as LangGraphClient<AgentThreadState>;
}