diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index ed6c1da2de6..42cb4a1be3f 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -11881,7 +11881,7 @@ namespace ts { function getJsxAttributesSymbolArrayFromAttributesProperty(openingLikeElement: JsxOpeningLikeElement): Symbol[] | undefined { const attributes = openingLikeElement.attributes; let attributesTable = createMap(); - let spread: Type = emptyObjectType + let spread: Type = emptyObjectType; let attributesArray: Symbol[] = []; for (const attributeDecl of attributes.properties) { const member = attributeDecl.symbol;