From 7bdd3b7469b06cb4bed5eaeb655bca280deb759e Mon Sep 17 00:00:00 2001 From: Tyler Sehr Date: Thu, 24 Aug 2023 09:43:36 -0700 Subject: [PATCH] adjust installpath to use const instead of let --- apps/remix-ide/src/app/files/fileManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/files/fileManager.ts b/apps/remix-ide/src/app/files/fileManager.ts index 893a63fb64..c558e65b0e 100644 --- a/apps/remix-ide/src/app/files/fileManager.ts +++ b/apps/remix-ide/src/app/files/fileManager.ts @@ -229,7 +229,7 @@ class FileManager extends Plugin { try { let alert = true for (let i = 0; i < filePaths.length; i++) { - let installPath = folderPath + "/" + filePaths[i] + const installPath = folderPath + "/" + filePaths[i] let path = this.normalize(installPath) path = this.limitPluginScope(path)