From 746e5fc3952e2ac9ee044cc884238a1cfbde4c0b Mon Sep 17 00:00:00 2001 From: mkljczk Date: Wed, 4 Dec 2024 21:50:29 +0100 Subject: [PATCH] pl-fe: lint Signed-off-by: mkljczk --- packages/pl-fe/src/actions/accounts.test.ts | 5 ----- .../hooks/account-lists/use-event-participation-requests.ts | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/pl-fe/src/actions/accounts.test.ts b/packages/pl-fe/src/actions/accounts.test.ts index 5cc66439d..8b6b5f10b 100644 --- a/packages/pl-fe/src/actions/accounts.test.ts +++ b/packages/pl-fe/src/actions/accounts.test.ts @@ -4,22 +4,17 @@ import { __stub } from 'pl-fe/api'; import { buildInstance, buildRelationship } from 'pl-fe/jest/factory'; import { mockStore, rootState } from 'pl-fe/jest/test-helpers'; import { normalizeAccount } from 'pl-fe/normalizers/account'; -import { ListRecord, ReducerRecord } from 'pl-fe/reducers/user-lists'; import { blockAccount, createAccount, - expandFollowRequests, fetchAccount, fetchAccountByUsername, - fetchFollowRequests, fetchRelationships, muteAccount, removeFromFollowers, - subscribeAccount, unblockAccount, unmuteAccount, - unsubscribeAccount, } from './accounts'; let store: ReturnType; diff --git a/packages/pl-fe/src/api/hooks/account-lists/use-event-participation-requests.ts b/packages/pl-fe/src/api/hooks/account-lists/use-event-participation-requests.ts index 072758d7e..c974019a2 100644 --- a/packages/pl-fe/src/api/hooks/account-lists/use-event-participation-requests.ts +++ b/packages/pl-fe/src/api/hooks/account-lists/use-event-participation-requests.ts @@ -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 { makePaginatedResponseQuery } from 'pl-fe/api/utils/make-paginated-response-query';