Skip to content

Commit 006356d

Browse files
committed
Whitespace
1 parent 1fa74c5 commit 006356d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7302,7 +7302,7 @@ namespace ts {
73027302
// If we're compiling under --jsx react, the symbol 'React' should
73037303
// be marked as 'used' so we don't incorrectly elide its import. And if there
73047304
// is no 'React' symbol in scope, we should issue an error.
7305-
if(compilerOptions.jsx === JsxEmit.React) {
7305+
if (compilerOptions.jsx === JsxEmit.React) {
73067306
let reactSym = resolveName(node.tagName, 'React', SymbolFlags.Value, Diagnostics.Cannot_find_name_0, 'React');
73077307
if (reactSym) {
73087308
getSymbolLinks(reactSym).referenced = true;

0 commit comments

Comments
 (0)