Skip to content

Commit

Permalink
fix: adjust useNamedQuery imports
Browse files Browse the repository at this point in the history
  • Loading branch information
helciofranco committed Mar 8, 2024
1 parent 91cebe3 commit a885b0d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/react/src/core/useNamedQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ import type {
DefinedUseQueryResult,
QueryKey,
UseQueryOptions,
UseQueryResult} from '@tanstack/react-query';
import {
useQuery,
UseQueryResult,
} from '@tanstack/react-query';
import { useQuery } from '@tanstack/react-query';
import { useMemo } from 'react';

type ExcludeData<T> = Omit<T, 'data'>;
Expand Down

0 comments on commit a885b0d

Please sign in to comment.