From 508a1c1d7e8477a43f5a430af59c33816ba8d73f Mon Sep 17 00:00:00 2001 From: cha0s Date: Mon, 22 Jun 2020 15:57:40 -0500 Subject: [PATCH] chore: typo --- src/client/types/typing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/types/typing.js b/src/client/types/typing.js index 8fead1b..a433e3b 100644 --- a/src/client/types/typing.js +++ b/src/client/types/typing.js @@ -147,7 +147,7 @@ export const defaultSteps = (context, type, originalSteps = []) => { steps.push(defaultInvocation(context, steps)); } else { - const description = descriptionFromSteps(steps); + const description = descriptionFromSteps(context, steps); const candidates = descriptionCandidates(description, type); const key = candidates.find((candidate) => { const {type: candidateType} = description[candidate];