From 3789e476f7b9673147179eed5fdf292b100d03bd Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Fri, 24 Oct 2025 20:22:18 +0800 Subject: [PATCH] chore: make lint happy --- client/api/Client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/api/Client.ts b/client/api/Client.ts index a423eda..254b9fe 100644 --- a/client/api/Client.ts +++ b/client/api/Client.ts @@ -89,7 +89,7 @@ class Client { }) return re.data?.access_token as string } - static async auth(token: string, timeout: number) { + static async auth(token: string, timeout?: number) { const re = await this.invoke("User.auth", { access_token: token }, timeout, 1, true)