Skip to content

Commit 7829cba

Browse files
author
Kanchalai Tanglertsampan
committed
Fix linting error
1 parent 9a23b75 commit 7829cba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/checker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ namespace ts {
411411

412412
let _jsxNamespace: string;
413413
let _jsxFactoryEntity: EntityName;
414-
let _jsxElementAttribPropInterfaceSymbol: Symbol; // JSX.ElementAttributesProperty [symbol]
414+
let _jsxElementAttribPropInterfaceSymbol: Symbol; // JSX.ElementAttributesProperty [symbol]
415415
let _jsxElementPropertiesName: string;
416416
let _jsxElementChildrenPropertyName: string;
417417

@@ -13506,7 +13506,7 @@ namespace ts {
1350613506
const propsType = getTypeOfSymbol(propertiesOfJsxElementAttribPropInterface[0]);
1350713507
const propertiesOfProps = propsType && getPropertiesOfType(propsType);
1350813508
if (propertiesOfProps && propertiesOfProps.length === 1) {
13509-
_jsxElementChildrenPropertyName = propertiesOfProps[0].name;
13509+
_jsxElementChildrenPropertyName = propertiesOfProps[0].name;
1351013510
}
1351113511
}
1351213512
}

0 commit comments

Comments
 (0)