Skip to content

Commit

Permalink
Fixed GraphQL url in the frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
EehMauro committed Nov 25, 2024
1 parent bb57425 commit e94b7a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type AppPropsWithLayout = AppProps & {
}

const client = new ApolloClient({
uri: process.env.API_URL,
uri: `${process.env.API_URL}/graphql`,
cache: new InMemoryCache(),
});

Expand Down

0 comments on commit e94b7a0

Please sign in to comment.