summaryrefslogtreecommitdiff
path: root/src/i18n/locales.ts
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 15:49:03 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 15:49:03 +0100
commit37020d847e66e57913d493716e98f4dcab749262 (patch)
treea6bfa0c49bcec61ff91465f323142db43511a122 /src/i18n/locales.ts
parent18b85566df437ac932f59e94cbec771a4a331927 (diff)
Applies Prettier
Diffstat (limited to 'src/i18n/locales.ts')
-rw-r--r--src/i18n/locales.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i18n/locales.ts b/src/i18n/locales.ts
index 4192e3f..306810c 100644
--- a/src/i18n/locales.ts
+++ b/src/i18n/locales.ts
@@ -2,7 +2,7 @@ import type Locale from '../types/Locale';
// Use the magic of TypeScript to guarantee completeness
const localesHash: { [key in Locale]: 1 } = {
- 'sco': 1,
+ sco: 1,
'en-GB': 1,
};
@@ -13,4 +13,4 @@ const defaultLocaleAsLocale: Locale = 'sco';
const defaultLocale: 'sco' = defaultLocaleAsLocale;
export { defaultLocale };
-export default Object.keys(localesHash) as Locale[]; \ No newline at end of file
+export default Object.keys(localesHash) as Locale[];