From 0fada6ff471e7149f1298bfbd45bdfbfd5d0d2b6 Mon Sep 17 00:00:00 2001 From: Kerry Archibald Date: Thu, 21 Sep 2023 12:28:13 +1200 Subject: [PATCH] remove debug --- frontend/src/graphql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/graphql.ts b/frontend/src/graphql.ts index 5ad4c824..75191ec1 100644 --- a/frontend/src/graphql.ts +++ b/frontend/src/graphql.ts @@ -130,7 +130,7 @@ const exchanges = [ ]; export const client = createClient({ - url: "/graphql?testtest", + url: "/graphql", // Add the devtools exchange in development exchanges: import.meta.env.DEV ? [devtoolsExchange, ...exchanges] : exchanges, });