Skip to content

Commit

Permalink
dev: fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-crowell committed Jun 18, 2024
1 parent 9c74d94 commit 9707aa0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ui/src/locale.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Locale, LocaleCode } from '@do-ob/ui/types';

import {enUs} from './locale/en-us';
import { enUs } from './locale/en-us';

const library: Record<LocaleCode, Locale> = {
'en-US': enUs,
Expand Down Expand Up @@ -45,8 +45,8 @@ const library: Record<LocaleCode, Locale> = {
'am-ET': {},
'hi-IN': {},
'th-TH': {}
}
};

export function localeLibrary(code: LocaleCode) {
return library[code]
}
return library[code];
}

0 comments on commit 9707aa0

Please sign in to comment.