Skip to content

Commit

Permalink
fix issues with merge
Browse files Browse the repository at this point in the history
  • Loading branch information
esizer committed Oct 3, 2024
1 parent 2df41cb commit 178dd2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import useRoutes from "~/hooks/useRoutes";
const Registration_Query = graphql(/** GraphQL */ `
query Registration_Query {
me {
id
email
isGovEmployee
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ const ClientProvider = ({
client ??
createClient({
url: `${apiHost}${apiUri}`,
requestPolicy: "cache-and-network",
fetchOptions: { headers: { "Accept-Language": locale } },
exchanges: [
cacheExchange({
Expand Down Expand Up @@ -102,7 +101,7 @@ const ClientProvider = ({
},
},
),
logger(sev, msg) {
logger(sev: string, msg: string) {
logger.info(`Severity: ${sev}: ${msg}`);
},
}),
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.2",
"@graphql-codegen/client-preset": "^4.3.3",
"@graphql-codegen/introspection": "^4.0.3",
"@parcel/watcher": "^2.4.1",
"graphql": "^16.9.0",
Expand Down

0 comments on commit 178dd2e

Please sign in to comment.