Skip to content

Commit

Permalink
Explicitly return English since it's not loaded.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjko committed Sep 17, 2023
1 parent 068507d commit ac9655c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db/LocalesDatabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export default class LocalesDatabase {
return undefined;

// Is this en-US? We bundle it. Bail.
if (lang === 'en-US') return undefined;
if (lang === 'en-US') return DefaultLocale;

const current = this.localesLoaded[lang];

Expand Down

0 comments on commit ac9655c

Please sign in to comment.