Skip to content

Commit c1a32cc

Browse files
committed
Fix lint errors/warnings
1 parent a79d205 commit c1a32cc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/core/ObservableQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import {
3434
import { invariant } from "@apollo/client/utilities/invariant";
3535

3636
import type { ApolloClient } from "./ApolloClient.js";
37+
import { dataStateErrorCache } from "./dataStateErrorCache.js";
3738
import { NetworkStatus } from "./networkStatus.js";
3839
import type { QueryManager } from "./QueryManager.js";
3940
import type {
@@ -55,7 +56,6 @@ import type {
5556
UpdateQueryOptions,
5657
WatchQueryFetchPolicy,
5758
} from "./watchQueryOptions.js";
58-
import { dataStateErrorCache } from "./dataStateErrorCache.js";
5959

6060
const { assign, hasOwnProperty } = Object;
6161

src/core/QueryManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ import {
7575
import { defaultCacheSizes } from "../utilities/caching/sizes.js";
7676

7777
import type { ApolloClient } from "./ApolloClient.js";
78+
import { dataStateErrorCache } from "./dataStateErrorCache.js";
7879
import { NetworkStatus } from "./networkStatus.js";
7980
import { logMissingFieldErrors, ObservableQuery } from "./ObservableQuery.js";
8081
import { CacheWriteBehavior, QueryInfo } from "./QueryInfo.js";
@@ -95,7 +96,6 @@ import type {
9596
MutationFetchPolicy,
9697
WatchQueryFetchPolicy,
9798
} from "./watchQueryOptions.js";
98-
import { dataStateErrorCache } from "./dataStateErrorCache.js";
9999

100100
interface MutationStoreValue {
101101
mutation: DocumentNode;

src/incremental/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66

77
import type { ApolloLink } from "@apollo/client/link";
88
import type { DeepPartial } from "@apollo/client/utilities";
9-
import { StreamInfoTrie } from "../utilities/internal/index.js";
9+
import type { StreamInfoTrie } from "@apollo/client/utilities/internal";
1010

1111
export declare namespace Incremental {
1212
export type Path = ReadonlyArray<string | number>;

0 commit comments

Comments
 (0)