Skip to content

Commit 6d8fe0f

Browse files
committed
fixup!
1 parent 1458d3d commit 6d8fe0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/browser/pages/vscode.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ export function createBundlePath(_resolvedLanguagePackCoreLocation: string, bund
3939
*
4040
* Make sure to wrap this in a try/catch block when you call it.
4141
**/
42-
export function getNlsConfiguration(document: Document, base: string) {
42+
export function getNlsConfiguration(_document: Document, base: string) {
4343
const errorMsgPrefix = "[vscode]"
44-
const nlsConfigElement = document?.getElementById(nlsConfigElementId)
44+
const nlsConfigElement = _document?.getElementById(nlsConfigElementId)
4545
const dataSettings = nlsConfigElement?.getAttribute("data-settings")
4646

4747
if (!nlsConfigElement) {

0 commit comments

Comments
 (0)