From 56bd5c7ac4c53019fb01b37ad8e015118defe7f1 Mon Sep 17 00:00:00 2001 From: Olusegun Akintayo Date: Thu, 20 Jul 2023 14:04:26 +0100 Subject: [PATCH] Sort imports Signed-off-by: Olusegun Akintayo --- .../Settings/ExperimentalSettings/index.test.tsx | 6 +++--- .../Settings/ExperimentalSettings/index.tsx | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/components/Views/Settings/ExperimentalSettings/index.test.tsx b/app/components/Views/Settings/ExperimentalSettings/index.test.tsx index 1c20d7619c3..7f214b25f88 100644 --- a/app/components/Views/Settings/ExperimentalSettings/index.test.tsx +++ b/app/components/Views/Settings/ExperimentalSettings/index.test.tsx @@ -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(); diff --git a/app/components/Views/Settings/ExperimentalSettings/index.tsx b/app/components/Views/Settings/ExperimentalSettings/index.tsx index 848d6411e62..50b358e9e12 100644 --- a/app/components/Views/Settings/ExperimentalSettings/index.tsx +++ b/app/components/Views/Settings/ExperimentalSettings/index.tsx @@ -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) =>