Skip to content

Commit

Permalink
fix error name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskalmar committed Jan 31, 2021
1 parent b3811bc commit 492a327
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/graphqlProtocol/helper.ts
Expand Up @@ -57,7 +57,7 @@ export const checkRequiredI18nInputs = (
) {
throw new CustomError(
`Only one of these fields may be used: ${gqlFieldName}, ${gqlFieldNameI18n}`,
'AmbigiousI18nInputError',
'AmbiguousI18nInputError',
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/graphqlProtocol/resolver.ts
Expand Up @@ -270,7 +270,7 @@ export const getNestedPayloadResolver = (
`Only one of these fields may be used: ${uniquenessFieldNames.join(
', ',
)}`,
'AmbigiousNestedInputError',
'AmbiguousNestedInputError',
);
}

Expand Down

0 comments on commit 492a327

Please sign in to comment.