From 117f920bfab0d042511c801a31bd4f7046eed7ae Mon Sep 17 00:00:00 2001 From: ZyPA Date: Fri, 27 Feb 2026 11:41:09 +0100 Subject: [PATCH] Update apollo.ts Make apollo shut up about the fucking DevTools. --- src/apollo/apollo.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apollo/apollo.ts b/src/apollo/apollo.ts index 80347984..fa17e9d2 100644 --- a/src/apollo/apollo.ts +++ b/src/apollo/apollo.ts @@ -28,4 +28,5 @@ const cache = new InMemoryCache(); export const apolloClient = new ApolloClient({ link, cache, + connectToDevTools: false, });