Skip to content

Commit

Permalink
fix: flags ordering for china
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Apr 16, 2024
1 parent 6709555 commit ce837a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/suggesting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const suggest = (input: string, limit = 10): SuggestResult[] => {

export const getItemWithPopulation = (
languageId: string,
value: typeof languageInfo[keyof typeof languageInfo]
value: (typeof languageInfo)[keyof typeof languageInfo]
): SuggestResultWithPopulation => {
return {
languageId: languageId as keyof typeof languageInfo,
Expand Down

0 comments on commit ce837a4

Please sign in to comment.