fix(apollo): enable devtools configuration option

Update the Apollo Client configuration to use the new devtools 
option instead of the deprecated connectToDevTools. This change 
ensures proper integration with development tools and maintains 
compatibility with future Apollo updates.
This commit is contained in:
2025-11-04 11:32:47 +01:00
parent da8c2fea2d
commit 7e14688ee0
+3 -1
View File
@@ -88,7 +88,9 @@ const link =
]) ])
const instance = new ApolloClient({ const instance = new ApolloClient({
connectToDevTools: true, devtools: {
enabled: true,
},
link, link,
cache, cache,
defaultOptions: { defaultOptions: {