Skip to content

Commit

Permalink
Order imports alphabetically
Browse files Browse the repository at this point in the history
Reorder imports according to the team conventions.
  • Loading branch information
esanzgar committed Oct 14, 2021
1 parent abdefa5 commit 135e1d7
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 @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions src/sidebar/components/TopBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 135e1d7

Please sign in to comment.