Skip to content

Commit

Permalink
fix: disable no console
Browse files Browse the repository at this point in the history
  • Loading branch information
nada-deriv committed Jun 5, 2024
1 parent afa78ac commit c3bb521
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { useDevice } from '@deriv-com/ui';
import AppContent from './routes/AppContent';

const { VITE_CROWDIN_BRANCH_NAME, VITE_PROJECT_NAME, VITE_TRANSLATIONS_CDN_URL } = import.meta.env;
// eslint-disable-next-line no-console
console.log(
'VITE_CROWDIN_BRANCH_NAME',
VITE_CROWDIN_BRANCH_NAME,
Expand All @@ -15,6 +16,7 @@ console.log(
'VITE_TRANSLATIONS_CDN_URL',
VITE_TRANSLATIONS_CDN_URL
);
// eslint-disable-next-line no-console
console.log(`${VITE_TRANSLATIONS_CDN_URL}/${VITE_PROJECT_NAME}/${VITE_CROWDIN_BRANCH_NAME}`);
const i18nInstance = initializeI18n({
cdnUrl: `${VITE_TRANSLATIONS_CDN_URL}/${VITE_PROJECT_NAME}/${VITE_CROWDIN_BRANCH_NAME}`,
Expand Down

0 comments on commit c3bb521

Please sign in to comment.