From 02b5dcd0e6ce406f46e281b6527996555cb661b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Sanz=20Garc=C3=ADa?= Date: Mon, 11 Oct 2021 15:53:47 +0200 Subject: [PATCH] Order imports alphabetically Reorder imports according to the team conventions. --- src/sidebar/components/HypothesisApp.js | 2 +- src/sidebar/components/TopBar.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sidebar/components/HypothesisApp.js b/src/sidebar/components/HypothesisApp.js index ac02a7f266c..2c09f457cd4 100644 --- a/src/sidebar/components/HypothesisApp.js +++ b/src/sidebar/components/HypothesisApp.js @@ -4,11 +4,11 @@ import { useEffect, useMemo } from 'preact/hooks'; import { sidebarToHostEvents } from '../../shared/bridge-events'; import { confirm } from '../../shared/prompts'; import { serviceConfig } from '../config/service-config'; -import { useStoreProxy } from '../store/use-store'; import { parseAccountID } from '../helpers/account-id'; import { shouldAutoDisplayTutorial } from '../helpers/session'; import { applyTheme } from '../helpers/theme'; import { withServices } from '../service-context'; +import { useStoreProxy } from '../store/use-store'; import AnnotationView from './AnnotationView'; import SidebarView from './SidebarView'; diff --git a/src/sidebar/components/TopBar.js b/src/sidebar/components/TopBar.js index ce80d852941..392c7eb594a 100644 --- a/src/sidebar/components/TopBar.js +++ b/src/sidebar/components/TopBar.js @@ -2,10 +2,10 @@ import { IconButton, LinkButton } from '@hypothesis/frontend-shared'; import { sidebarToHostEvents } from '../../shared/bridge-events'; import { serviceConfig } from '../config/service-config'; -import { useStoreProxy } from '../store/use-store'; import { isThirdPartyService } from '../helpers/is-third-party-service'; -import { withServices } from '../service-context'; import { applyTheme } from '../helpers/theme'; +import { withServices } from '../service-context'; +import { useStoreProxy } from '../store/use-store'; import GroupList from './GroupList'; import SearchInput from './SearchInput';