Skip to content

Commit

Permalink
Fix Invalid key warning
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Oct 16, 2023
1 parent b1eb80d commit d18362a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/lib/gql/gql-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ function createGqlClient(_gqlEndpoint?: string): Client {
...(import.meta.env.DEV ? [devtoolsExchange] : []),
cacheExchange({
keys: {
// eslint-disable-next-line @typescript-eslint/naming-convention
/* eslint-disable @typescript-eslint/naming-convention */
'Changeset': () => null,
'UsersCollectionSegment': () => null,
/* eslint-enable @typescript-eslint/naming-convention */
}
}),
tracingExchange,
Expand Down

0 comments on commit d18362a

Please sign in to comment.