Skip to content

Commit

Permalink
Merge pull request #2424 from DavidHavl/error-messages-fix
Browse files Browse the repository at this point in the history
fix(graphql): fix word spacing of error message when null
  • Loading branch information
kamilmysliwiec committed Sep 30, 2022
2 parents 91c8af9 + 7f1d58f commit d6c763e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -6,8 +6,8 @@ export class CannotDetermineInputTypeError extends Error {
typeof typeRef === 'function' && typeRef.name;
super(
`Cannot determine a GraphQL input type ${
inputObjectName ? `("${inputObjectName}") ` : null
}for the "${hostType}". Make sure your class is decorated with an appropriate decorator.`,
inputObjectName ? `("${inputObjectName}")` : null
} for the "${hostType}". Make sure your class is decorated with an appropriate decorator.`,
);
}
}

0 comments on commit d6c763e

Please sign in to comment.