Skip to content

Commit c56fdd3

Browse files
committed
fix up imports
1 parent ce6a75a commit c56fdd3

File tree

1 file changed

+6
-9
lines changed
  • packages/client-react-streaming/src/DataTransportAbstraction

1 file changed

+6
-9
lines changed

packages/client-react-streaming/src/DataTransportAbstraction/hooks.ts

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
import type { HookWrappers } from "@apollo/client/react/internal/index.js";
22
import { useTransportValue } from "./useTransportValue.js";
3-
import type { WatchQueryOptions } from "@apollo/client";
4-
import { useApolloClient } from "@apollo/client";
5-
import { getSuspenseCache } from "@apollo/client/react/internal";
6-
import { canonicalStringify } from "@apollo/client/cache";
3+
import type { WatchQueryOptions } from "@apollo/client/index.js";
4+
import { useApolloClient } from "@apollo/client/index.js";
5+
import { getSuspenseCache } from "@apollo/client/react/internal/index.js";
6+
import { canonicalStringify } from "@apollo/client/cache/index.js";
77
import { use } from "react";
8-
import {
9-
ApolloClient,
10-
getQueryManager,
11-
wrappers,
12-
} from "./WrappedApolloClient.js";
8+
import type { ApolloClient } from "./WrappedApolloClient.js";
9+
import { getQueryManager, wrappers } from "./WrappedApolloClient.js";
1310

1411
export const hookWrappers: HookWrappers = {
1512
useFragment(orig_useFragment) {

0 commit comments

Comments
 (0)