Skip to content

Commit

Permalink
fix: fix graphql schema to match hub (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Apr 10, 2024
1 parent 82b23d1 commit 12737c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const client = new ApolloClient({
});

const PROPOSAL_QUERY = gql`
query Proposal($id: String) {
query Proposal($id: String!) {
proposal(id: $id) {
id
state
Expand Down Expand Up @@ -117,7 +117,7 @@ const VOTE_QUERY = gql`
`;

const SPACE_QUERY = gql`
query Space($id: String) {
query Space($id: String!) {
space(id: $id) {
id
network
Expand Down

0 comments on commit 12737c8

Please sign in to comment.