From 2e1b6f199cec2989bb6309f2502dc0b4f6f950aa Mon Sep 17 00:00:00 2001 From: Siyuan Miao Date: Thu, 4 Sep 2025 11:21:52 +0200 Subject: [PATCH] chore: make tslint happy --- ui/src/hooks/hidRpc.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/src/hooks/hidRpc.ts b/ui/src/hooks/hidRpc.ts index 79100394..20b8a108 100644 --- a/ui/src/hooks/hidRpc.ts +++ b/ui/src/hooks/hidRpc.ts @@ -60,8 +60,7 @@ export class RpcMessage { throw new Error("Not implemented"); } - // @ts-expect-error: this is a base class, so we don't need to implement it - public static unmarshal(data: Uint8Array): RpcMessage | undefined { + public static unmarshal(_data: Uint8Array): RpcMessage | undefined { throw new Error("Not implemented"); } }