Skip to content

Commit

Permalink
feat: prod crowdin hash
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarkhanzadian committed Dec 6, 2024
1 parent 2a22b49 commit 96fda70
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/mobile/src/locales/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { isFeatureEnabled } from '@/utils/feature-flag';
import OtaClient from '@crowdin/ota-client';
import { i18n } from '@lingui/core';

const otaClient = new OtaClient('fa04f606d6ca277403b4e49twcj');
const prodHash = 'a14ceb253620ee8933d9539twcj';
const devHash = 'fa04f606d6ca277403b4e49twcj';

const otaClient = new OtaClient(isFeatureEnabled() ? devHash : prodHash);

export const DEFAULT_LOCALE = 'en';
let LOCALES: string[] = [];
Expand Down

0 comments on commit 96fda70

Please sign in to comment.