From f27cef3c9d5146ed81af276cb4f66725cacc191b 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 According to our 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 0babe163340..96951090bbe 100644 --- a/src/sidebar/components/HypothesisApp.js +++ b/src/sidebar/components/HypothesisApp.js @@ -3,11 +3,11 @@ import { useEffect, useMemo } from 'preact/hooks'; 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 030e16c3aa9..ef02e90f8af 100644 --- a/src/sidebar/components/TopBar.js +++ b/src/sidebar/components/TopBar.js @@ -1,10 +1,10 @@ import { IconButton, LinkButton } from '@hypothesis/frontend-shared'; 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';