Skip to content

Commit

Permalink
Fix lint issue from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmyshchyshyn committed Nov 12, 2024
1 parent 753d3b6 commit d4cf219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/key/Key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ export class Key {
source: string,
prefixes: Map<PrefixName, TypeID>
): PrefixName | undefined {
for (const [prefix, _] of prefixes) {
for (const [prefix] of prefixes) {
if (source.startsWith(prefix)) {
if (
prefix === PrefixName.EraId &&
Expand Down

0 comments on commit d4cf219

Please sign in to comment.