Skip to content

Commit c5b21d4

Browse files
committed
Fix the lint error
1 parent b7f6910 commit c5b21d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/sys.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ namespace ts {
126126
}
127127

128128
function getCustomPollingBasedLevels(baseVariable: string, defaultLevels: Levels) {
129-
let customLevels = getCustomLevels(baseVariable);
129+
const customLevels = getCustomLevels(baseVariable);
130130
return (pollingIntervalChanged || customLevels) &&
131131
createPollingIntervalBasedLevels(customLevels ? { ...defaultLevels, ...customLevels } : defaultLevels);
132132
}

0 commit comments

Comments
 (0)