Skip to content

Commit

Permalink
style(App.tsx): remove unnecessary whitespace at the end of the graph…
Browse files Browse the repository at this point in the history
…ql uri string

The whitespace at the end of the graphql uri string has been removed to ensure consistency and improve code readability.
  • Loading branch information
ktun95 committed May 7, 2024
1 parent 74cccb8 commit 3fc0d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/stock-center/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const logtoConfig: LogtoConfig = {

export const App = () => {
const client = useGraphqlClient({
uri: `${import.meta.env.VITE_APP_GRAPHQL_SERVER}/graphql` ,
uri: `${import.meta.env.VITE_APP_GRAPHQL_SERVER}/graphql`,
cache: useApolloClientCache({
customPolicies: {
Query: {
Expand Down

0 comments on commit 3fc0d78

Please sign in to comment.