@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
14 lines (11 loc) • 420 B
text/typescript
import { useGetDRepListInfiniteQuery } from './useGetDRepListQuery';
export const useGetDRepDetailsQuery = (
dRepId: string | null | undefined,
options?: { enabled: boolean }
) => {
const { dRepData, isDRepListLoading } = useGetDRepListInfiniteQuery(
{ searchPhrase: dRepId ?? undefined },
{ enabled: options?.enabled && !!dRepId }
);
return { dRep: dRepData?.[0], isLoading: isDRepListLoading };
};