From c6a8586bf4de903d46d73c6493ddc80412d99db2 Mon Sep 17 00:00:00 2001 From: Leibale Eidelman Date: Tue, 30 Jul 2024 13:21:23 -0400 Subject: [PATCH] fix #2811 - fix `EVAL[SHA][_RO]` & `FCALL[_RO]` key extraction --- packages/client/lib/commands/generic-transformers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/lib/commands/generic-transformers.ts b/packages/client/lib/commands/generic-transformers.ts index 4cf610a036e..b7e95f20ffc 100644 --- a/packages/client/lib/commands/generic-transformers.ts +++ b/packages/client/lib/commands/generic-transformers.ts @@ -412,7 +412,7 @@ export interface EvalOptions { arguments?: Array; } -export function evalFirstKeyIndex(options?: EvalOptions): string | undefined { +export function evalFirstKeyIndex(_: unknown, options?: EvalOptions): string | undefined { return options?.keys?.[0]; }