From e98cbbb72726a327b4d30c8008bef673c95ae990 Mon Sep 17 00:00:00 2001 From: rui hildt Date: Thu, 3 Aug 2023 10:50:05 +0200 Subject: [PATCH] Update the graphql endpoint --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index d89b330..bb5e042 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5,7 +5,7 @@ import { ApolloClient, InMemoryCache, ApolloProvider } from '@apollo/client'; import App from './components/App'; const client = new ApolloClient({ - uri: 'https://spotify-graphql-server.herokuapp.com/graphql', + uri: 'https://joyce-spotify-graphql.herokuapp.com/graphql', cache: new InMemoryCache(), });