Skip to content

Commit

Permalink
import de before en (alphabetical), should fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
burghoffdavid committed May 28, 2024
1 parent b0c52f0 commit 1bc0c57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/intl/translations/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { CustomizationLocale } from '@gitbook/api';

import { de } from './de';
import { en } from './en';
import { es } from './es';
import { fr } from './fr';
import { ja } from './ja';
import { de } from './de';
import { TranslationLanguage } from './types';
import { zh } from './zh';

Expand All @@ -13,10 +13,10 @@ export * from './types';
export const languages: {
[locale in CustomizationLocale]: TranslationLanguage;
} = {
de,
en,
fr,
es,
zh,
ja,
de,
};

0 comments on commit 1bc0c57

Please sign in to comment.