chore(deps): update dependency @stylistic/eslint-plugin to v5.3.1

This commit is contained in:
Renovate
2025-09-01 13:19:48 +02:00
committed by Joakim Olsson
parent fa05e4573d
commit a055ebf342
3 changed files with 19 additions and 19 deletions
+13 -13
View File
@@ -72,20 +72,20 @@ const createSpanLink = new ApolloLink((operation, forward) => {
})
const link =
from([
createSpanLink,
split(
({ query }) => {
const definition = getMainDefinition(query)
return (
definition.kind === 'OperationDefinition' &&
from([
createSpanLink,
split(
({ query }) => {
const definition = getMainDefinition(query)
return (
definition.kind === 'OperationDefinition' &&
definition.operation === 'subscription'
)
},
authLink.concat(wsLink),
authLink.concat(httpLink),
),
])
)
},
authLink.concat(wsLink),
authLink.concat(httpLink),
),
])
const instance = new ApolloClient({
connectToDevTools: true,