This commit is contained in:
jeffvli
2025-07-29 19:07:58 -07:00
parent 98e8bda45d
commit a7430dae31
60 changed files with 583 additions and 155 deletions
@@ -1,4 +1,4 @@
import type { QueryHookArgs } from '/@/renderer/lib/react-query';
import type { RQueryHookArgs } from '/@/renderer/lib/react-query';
import { useQuery } from '@tanstack/react-query';
@@ -7,7 +7,7 @@ import { queryKeys } from '/@/renderer/api/query-keys';
import { useServerById } from '/@/renderer/store';
import { AlbumListQuery } from '/@/shared/types/domain/album-domain-types';
export const useAlbumListCount = (args: QueryHookArgs<AlbumListQuery>) => {
export const useAlbumListCount = (args: RQueryHookArgs<AlbumListQuery>) => {
const { options, query, serverId } = args;
const server = useServerById(serverId);