Skip to content

Commit

Permalink
Order imports alphabetically
Browse files Browse the repository at this point in the history
According to our conventions.
  • Loading branch information
esanzgar committed Oct 11, 2021
1 parent ab7d2c0 commit f27cef3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sidebar/components/HypothesisApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions src/sidebar/components/TopBar.js
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit f27cef3

Please sign in to comment.