Skip to content

Commit

Permalink
Fix import order in LanguageSwitcher and StyledLanguageSwitcher compo…
Browse files Browse the repository at this point in the history
…nents
  • Loading branch information
paul committed Nov 10, 2024
1 parent 4f2a653 commit 148cc1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/settings/LanguageSwitcher.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';
import { ViewStyle } from 'react-native';

import { useAppDispatch, useAppSelector } from '../../lib/redux/Hooks';
import { languageActions } from '../../lib/redux/slices/LanguageSlice';
import { languageOptions } from '../../lib/translations/languageOptions';
Expand Down
3 changes: 2 additions & 1 deletion src/screens/UserBackground/StyledLanguageSwitcher.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { useColorConfig } from '../../lib/constants/Colors';

import { LanguageSwitcher } from '../../components/settings/LanguageSwitcher';
import { useColorConfig } from '../../lib/constants/Colors';

export const StyledLanguageSwitcher = () => {
const colors = useColorConfig();
Expand Down

0 comments on commit 148cc1e

Please sign in to comment.