From f4c5a9b5be245ecc5a8b0ecaaecbc8b050b0db13 Mon Sep 17 00:00:00 2001 From: Johns Beharry Date: Sun, 28 Nov 2021 22:51:56 -0600 Subject: [PATCH] chore(app): use hosted graphql api --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 238b303..bcc1829 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -11,7 +11,7 @@ import reportWebVitals from './reportWebVitals'; import Wrapper from './utils/Wrapper'; const client = new ApolloClient({ - uri: '/.netlify/functions/graphql', + uri: 'https://xenodochial-goldstine-d09942.netlify.app/.netlify/functions/graphql', cache: new InMemoryCache() });