From 06aeb0771a00b89e585bde9885823d5a42f3dc8e Mon Sep 17 00:00:00 2001 From: Brian Le Date: Wed, 23 Oct 2024 16:26:57 -0700 Subject: [PATCH] Fix bug with autocompleting alias (#2244) --- src/helpers/management_utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/management_utils.ts b/src/helpers/management_utils.ts index b47ded2ec..90e039f51 100644 --- a/src/helpers/management_utils.ts +++ b/src/helpers/management_utils.ts @@ -338,7 +338,7 @@ export async function reloadArtists(): Promise { State.artistToEntry[mapping["artist_name_ko"]] = artistEntry; } - for (const alias in aliases) { + for (const alias of aliases) { if (alias.length > 0) { State.artistToEntry[ GameRound.normalizePunctuationInName(alias)