Skip to content

Commit

Permalink
Fix frontend styles.
Browse files Browse the repository at this point in the history
  • Loading branch information
JSv4 committed Sep 13, 2023
1 parent 39c0f49 commit 7f77a0f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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/`,
});
Expand Down

0 comments on commit 7f77a0f

Please sign in to comment.