diff --git a/frontend-react/src/components/plus/Summaries.tsx b/frontend-react/src/components/plus/Summaries.tsx index a1f9eea1a..6949aa5a7 100644 --- a/frontend-react/src/components/plus/Summaries.tsx +++ b/frontend-react/src/components/plus/Summaries.tsx @@ -75,6 +75,7 @@ const Summaries: React.FC = ({ summaries }) => { const summaryMap = (summary: Summary) => { const { discord_user, score } = summary + console.log("discord_user", discord_user) return ( diff --git a/frontend-react/src/graphql/queries/suggestions.ts b/frontend-react/src/graphql/queries/suggestions.ts index b52bd40c2..0e82f1607 100644 --- a/frontend-react/src/graphql/queries/suggestions.ts +++ b/frontend-react/src/graphql/queries/suggestions.ts @@ -8,6 +8,7 @@ export const SUGGESTIONS: DocumentNode = gql` username discriminator twitter_name + avatar } suggester_discord_user { discord_id diff --git a/frontend-react/src/graphql/queries/summaries.ts b/frontend-react/src/graphql/queries/summaries.ts index 3254d6b4f..6d435f1b9 100644 --- a/frontend-react/src/graphql/queries/summaries.ts +++ b/frontend-react/src/graphql/queries/summaries.ts @@ -8,6 +8,7 @@ export const SUMMARIES: DocumentNode = gql` username discriminator twitter_name + avatar } score { total diff --git a/frontend-react/src/graphql/queries/vouches.ts b/frontend-react/src/graphql/queries/vouches.ts index acd8e618e..3af339eb9 100644 --- a/frontend-react/src/graphql/queries/vouches.ts +++ b/frontend-react/src/graphql/queries/vouches.ts @@ -7,6 +7,7 @@ export const VOUCHES: DocumentNode = gql` discriminator twitter_name discord_id + avatar plus { voucher_user { username diff --git a/graphql-schemas/maps.js b/graphql-schemas/maps.js index 8dbbcd2df..420f1ab60 100644 --- a/graphql-schemas/maps.js +++ b/graphql-schemas/maps.js @@ -64,7 +64,6 @@ const typeDef = gql` const resolvers = { Query: { maplists: (root, args) => { - console.log("args", args) const criteria = args.name ? { name: args.name } : {} return Maplist.find(criteria) .sort({ order: "asc" })