diff --git a/packages/web/src/components/cell/cellTypes.ts b/packages/web/src/components/cell/cellTypes.ts index b0645aa715dc..1bf8414d7451 100644 --- a/packages/web/src/components/cell/cellTypes.ts +++ b/packages/web/src/components/cell/cellTypes.ts @@ -4,7 +4,7 @@ import type { ApolloClient, NetworkStatus, OperationVariables, - QueryReference, + QueryRef, UseBackgroundQueryResult, } from '@apollo/client' import type { DocumentNode } from 'graphql' @@ -200,7 +200,7 @@ export interface CreateCellProps { export type SuspendingSuccessProps = React.PropsWithChildren< Record > & { - queryRef: QueryReference // from useBackgroundQuery + queryRef: QueryRef // from useBackgroundQuery suspenseQueryResult: SuspenseCellQueryResult userProps: Record // we don't really care about the types here, we are just forwarding on }