Skip to content

Commit

Permalink
coerceInputValue: add missing argument in function call (#3130)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed May 24, 2021
1 parent f1f3d8e commit e428304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/coerceInputValue.js
Expand Up @@ -32,7 +32,7 @@ export function coerceInputValue(
type: GraphQLInputType,
onError: OnErrorCB = defaultOnError,
): mixed {
return coerceInputValueImpl(inputValue, type, onError);
return coerceInputValueImpl(inputValue, type, onError, undefined);
}

function defaultOnError(
Expand Down

0 comments on commit e428304

Please sign in to comment.