From 7f77a0f739506231bb8c7ec00f0c9f422e5acbf3 Mon Sep 17 00:00:00 2001 From: John Scrudato Date: Tue, 12 Sep 2023 23:42:02 -0500 Subject: [PATCH] Fix frontend styles. --- frontend/src/index.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index f2aa04ab..1b912102 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -28,8 +28,7 @@ const onRedirectCallback = (appState: any) => { const { REACT_APP_USE_AUTH0 } = process.env; - -const api_root_url='http://localhost:8000' +const api_root_url = "http://localhost:8000"; console.log("OpenContracts is using Auth0: ", REACT_APP_USE_AUTH0); console.log("OpenContracts frontend target api root", api_root_url); @@ -45,7 +44,7 @@ const authLink = new ApolloLink((operation, forward) => { return forward(operation); }); -console.log("api_root_url", api_root_url) +console.log("api_root_url", api_root_url); const httpLink = createHttpLink({ uri: `${api_root_url}/graphql/`, });