Skip to content

Commit b05e133

Browse files
committed
Order imports alphabetically
Reorder imports according to the team conventions.
1 parent c23807c commit b05e133

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/sidebar/components/HypothesisApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import { useEffect, useMemo } from 'preact/hooks';
44
import { sidebarToHostEvents } from '../../shared/bridge-events';
55
import { confirm } from '../../shared/prompts';
66
import { serviceConfig } from '../config/service-config';
7-
import { useStoreProxy } from '../store/use-store';
87
import { parseAccountID } from '../helpers/account-id';
98
import { shouldAutoDisplayTutorial } from '../helpers/session';
109
import { applyTheme } from '../helpers/theme';
1110
import { withServices } from '../service-context';
11+
import { useStoreProxy } from '../store/use-store';
1212

1313
import AnnotationView from './AnnotationView';
1414
import SidebarView from './SidebarView';

src/sidebar/components/TopBar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import { IconButton, LinkButton } from '@hypothesis/frontend-shared';
22

33
import { sidebarToHostEvents } from '../../shared/bridge-events';
44
import { serviceConfig } from '../config/service-config';
5-
import { useStoreProxy } from '../store/use-store';
65
import { isThirdPartyService } from '../helpers/is-third-party-service';
7-
import { withServices } from '../service-context';
86
import { applyTheme } from '../helpers/theme';
7+
import { withServices } from '../service-context';
8+
import { useStoreProxy } from '../store/use-store';
99

1010
import GroupList from './GroupList';
1111
import SearchInput from './SearchInput';

0 commit comments

Comments
 (0)