From d4cf2197c09925b89cd626a7210870e4848af2ff Mon Sep 17 00:00:00 2001 From: Oleksandr Myshchyshyn Date: Tue, 12 Nov 2024 14:49:19 +0200 Subject: [PATCH] Fix lint issue from CI --- src/types/key/Key.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/key/Key.ts b/src/types/key/Key.ts index d470d1c25..f188d15b1 100644 --- a/src/types/key/Key.ts +++ b/src/types/key/Key.ts @@ -561,7 +561,7 @@ export class Key { source: string, prefixes: Map ): PrefixName | undefined { - for (const [prefix, _] of prefixes) { + for (const [prefix] of prefixes) { if (source.startsWith(prefix)) { if ( prefix === PrefixName.EraId &&