yarn lint:js --fix

This commit is contained in:
Alex Gleason 2022-10-11 13:22:54 -05:00
parent 3695be06c5
commit 763ae5c58a
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
4 changed files with 4 additions and 4 deletions

View File

@ -15,13 +15,13 @@ import BundleContainer from 'soapbox/features/ui/containers/bundle_container';
import { UserPanel } from 'soapbox/features/ui/util/async-components'; import { UserPanel } from 'soapbox/features/ui/util/async-components';
import { useAppSelector, useAppDispatch } from 'soapbox/hooks'; import { useAppSelector, useAppDispatch } from 'soapbox/hooks';
import { makeGetAccount } from 'soapbox/selectors'; import { makeGetAccount } from 'soapbox/selectors';
import { isLocal } from 'soapbox/utils/accounts';
import { showProfileHoverCard } from './hover_ref_wrapper'; import { showProfileHoverCard } from './hover_ref_wrapper';
import { Card, CardBody, HStack, Icon, Stack, Text } from './ui'; import { Card, CardBody, HStack, Icon, Stack, Text } from './ui';
import type { AppDispatch } from 'soapbox/store'; import type { AppDispatch } from 'soapbox/store';
import type { Account } from 'soapbox/types/entities'; import type { Account } from 'soapbox/types/entities';
import { isLocal } from 'soapbox/utils/accounts';
const getAccount = makeGetAccount(); const getAccount = makeGetAccount();