Skip to content

Commit

Permalink
Fix ESLint import sorting warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryashutov committed Feb 8, 2025
1 parent d6c05aa commit c11e179
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/services/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Locale } from 'antd/es/locale';
import enAntdLocale from 'antd/es/locale/en_US';
import esAntdLocale from 'antd/es/locale/es_ES';
import ruAntdLocale from 'antd/es/locale/ru_RU';

import { en, es, ru } from 'make-plural/plurals';

import { messages as enMessages } from 'src/locale/en/messages';
Expand Down
3 changes: 2 additions & 1 deletion src/theme/ThemeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import { ConfigProvider as ANTDConfigProvider } from 'antd';
import { ReactNode } from 'react';
import { ThemeProvider as StyledComponentsThemeProvider, createGlobalStyle } from 'styled-components';

import { antdLocaleMap, getCurrentLocale } from 'src/services/i18n';

import { getAppTheme, getANTDTheme } from './';
import { useTheme } from '../utils/theme';
import { antdLocaleMap, getCurrentLocale } from 'src/services/i18n';

interface Props {
theme?: 'dark' | 'light';
Expand Down

0 comments on commit c11e179

Please sign in to comment.