Skip to content

Commit

Permalink
fix(apps/gql): update SozlukTermQuery args (#571)
Browse files Browse the repository at this point in the history
I've changed the SozlukTerms query args in #539 but forgot to change
query we made in the sozluk query term page.

This also fixes the most stupidest npm bug i've ever encountered, i
won't even try to explain it but just know that it's so stupid and i
don't even know how we as an industry survive.
  • Loading branch information
usirin authored Jul 30, 2023
1 parent e66e303 commit 1716944
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 27 deletions.
2 changes: 1 addition & 1 deletion apps/kampus/app/sozluk/[term]/SozlukTerm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const SozlukTermContainer = (props: Props) => {
graphql`
query SozlukTermQuery($id: ID!) {
sozluk {
term(input: { id: $id }) {
term(id: $id) {
body {
...SozlukTermBody_body
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions apps/kampus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
},
"devDependencies": {
"@kampus/tailwind": "*",
"@types/react-relay": "14.1.4",
"relay-compiler": "15.0.0"
"@types/react-relay": "14.1.4"
},
"dependencies": {
"@kampus/next-auth": "*",
"@kampus/relay": "*",
"react-relay": "15.0.0",
"relay-compiler": "15.0.0",
"znv": "0.3.2",
"zod": "3.21.4"
}
Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@
"volta": {
"node": "18.14.2"
}
}
}

0 comments on commit 1716944

Please sign in to comment.