frontend-rw #1

Merged
marcin merged 347 commits from frontend-rw into develop 2024-12-05 15:32:18 -08:00
2 changed files with 1 additions and 6 deletions
Showing only changes of commit 746e5fc395 - Show all commits

View file

@ -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<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 { makePaginatedResponseQuery } from 'pl-fe/api/utils/make-paginated-response-query';