From d1f680d5d5a8290375a780b10b63e67ca1db83bd Mon Sep 17 00:00:00 2001 From: MTG2000 Date: Thu, 10 Mar 2022 14:45:46 +0200 Subject: [PATCH] fix: update graphql api url --- .storybook/preview.js | 2 +- src/utils/Wrapper.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.storybook/preview.js b/.storybook/preview.js index c88315b..ebc00a0 100644 --- a/.storybook/preview.js +++ b/.storybook/preview.js @@ -21,7 +21,7 @@ import { BrowserRouter } from "react-router-dom"; const client = new ApolloClient({ - uri: 'https://xenodochial-goldstine-d09942.netlify.app/.netlify/functions/graphql', + uri: 'https://makers.bolt.fun/.netlify/functions/graphql', cache: new InMemoryCache() }); diff --git a/src/utils/Wrapper.tsx b/src/utils/Wrapper.tsx index 1d7f7ad..eb6b715 100644 --- a/src/utils/Wrapper.tsx +++ b/src/utils/Wrapper.tsx @@ -15,7 +15,7 @@ import { } from "@apollo/client"; const client = new ApolloClient({ - uri: 'https://xenodochial-goldstine-d09942.netlify.app/.netlify/functions/graphql', + uri: 'https://makers.bolt.fun/.netlify/functions/graphql', cache: new InMemoryCache() });