Skip to content

Commit

Permalink
Fix bug with autocompleting alias (#2244)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brainicism authored Oct 23, 2024
1 parent a194e8d commit 06aeb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/management_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export async function reloadArtists(): Promise<void> {
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)
Expand Down

0 comments on commit 06aeb07

Please sign in to comment.