pl-fe: lint

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk 2024-12-04 21:50:29 +01:00
parent 4f95b1617c
commit 746e5fc395
2 changed files with 1 additions and 6 deletions

View file

@ -4,22 +4,17 @@ import { __stub } from 'pl-fe/api';
import { buildInstance, buildRelationship } from 'pl-fe/jest/factory'; import { buildInstance, buildRelationship } from 'pl-fe/jest/factory';
import { mockStore, rootState } from 'pl-fe/jest/test-helpers'; import { mockStore, rootState } from 'pl-fe/jest/test-helpers';
import { normalizeAccount } from 'pl-fe/normalizers/account'; import { normalizeAccount } from 'pl-fe/normalizers/account';
import { ListRecord, ReducerRecord } from 'pl-fe/reducers/user-lists';
import { import {
blockAccount, blockAccount,
createAccount, createAccount,
expandFollowRequests,
fetchAccount, fetchAccount,
fetchAccountByUsername, fetchAccountByUsername,
fetchFollowRequests,
fetchRelationships, fetchRelationships,
muteAccount, muteAccount,
removeFromFollowers, removeFromFollowers,
subscribeAccount,
unblockAccount, unblockAccount,
unmuteAccount, unmuteAccount,
unsubscribeAccount,
} from './accounts'; } from './accounts';
let store: ReturnType<typeof mockStore>; let store: ReturnType<typeof mockStore>;

View file

@ -1,5 +1,5 @@
import { type InfiniteData, useInfiniteQuery, useMutation } from '@tanstack/react-query'; import { type InfiniteData, useMutation } from '@tanstack/react-query';
import { importEntities } from 'pl-fe/actions/importer'; import { importEntities } from 'pl-fe/actions/importer';
import { makePaginatedResponseQuery } from 'pl-fe/api/utils/make-paginated-response-query'; import { makePaginatedResponseQuery } from 'pl-fe/api/utils/make-paginated-response-query';