We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc4990 commit 58b2d2dCopy full SHA for 58b2d2d
server/src/codeActions.ts
@@ -151,7 +151,7 @@ export let findCodeActionsInDiagnosticsMessage = ({
151
diagnosticMessage.forEach((line, index, array) => {
152
// Because of how actions work, there can only be one per diagnostic. So,
153
// halt whenever a code action has been found.
154
- let codeActionEtractors = [
+ let codeActionExtractors = [
155
simpleTypeMismatches,
156
didYouMeanAction,
157
addUndefinedRecordFieldsV10,
@@ -162,7 +162,7 @@ export let findCodeActionsInDiagnosticsMessage = ({
162
wrapInSome,
163
];
164
165
- for (let extractCodeAction of codeActionEtractors) {
+ for (let extractCodeAction of codeActionExtractors) {
166
let didFindAction = false;
167
168
try {
0 commit comments