Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
Signed-off-by: Olusegun Akintayo <akintayo.segun@gmail.com>
  • Loading branch information
segun committed Aug 4, 2023
1 parent dccc0fc commit 56bd5c7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import { render } from '@testing-library/react-native';
import { Provider } from 'react-redux';
import { ThemeContext, mockTheme } from '../../../../util/theme';
import configureMockStore from 'redux-mock-store';
import initialBackgroundState from '../../../../util/test/initial-background-state.json';
import ExperimentalSettings from '.';
import { render } from '@testing-library/react-native';
import { Provider } from 'react-redux';
import SECURITY_ALERTS_TOGGLE_TEST_ID from './constants';
import { ThemeContext, mockTheme } from '../../../../util/theme';

const mockStore = configureMockStore();

Expand Down
16 changes: 8 additions & 8 deletions app/components/Views/Settings/ExperimentalSettings/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import React, { useCallback, useEffect, FC } from 'react';
import { StyleSheet, Text, ScrollView, View, Switch } from 'react-native';
import StyledButton from '../../../UI/StyledButton';
import React, { FC, useCallback, useEffect } from 'react';
import { ScrollView, StyleSheet, Switch, Text, View } from 'react-native';
import { useDispatch, useSelector } from 'react-redux';
import { strings } from '../../../../../locales/i18n';
import { setSecurityAlertsEnabled } from '../../../../actions/experimental';
import {
colors as importedColors,
fontStyles,
colors as importedColors,
} from '../../../../styles/common';
import { getNavigationOptionsTitle } from '../../../UI/Navbar';
import { strings } from '../../../../../locales/i18n';
import { setSecurityAlertsEnabled } from '../../../../actions/experimental';
import { useTheme } from '../../../../util/theme';
import { useDispatch, useSelector } from 'react-redux';
import { getNavigationOptionsTitle } from '../../../UI/Navbar';
import StyledButton from '../../../UI/StyledButton';
import SECURITY_ALERTS_TOGGLE_TEST_ID from './constants';

const createStyles = (colors: any) =>
Expand Down

0 comments on commit 56bd5c7

Please sign in to comment.