From daee5cc7aebed84674df1b32db314e85d3cda19f Mon Sep 17 00:00:00 2001 From: Rim Rakhimov Date: Mon, 15 Jan 2024 13:59:37 +0400 Subject: [PATCH] Fix linter issues --- libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts b/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts index 694ecf6b1b..80547af2d1 100644 --- a/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts +++ b/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts @@ -35,7 +35,7 @@ export const fetchContractFromBlockscout = async (plugin, endpoint, contractAddr } } - for (let [file, source] of Object.entries(sources)) { + for (let [file, source] of Object.entries(sources)) { // eslint-disable-line file = file.replace('browser/', '') // should be fixed in the remix IDE end. file = file.replace(/^\//g, '') // remove first slash. if (await plugin.call('contentImport', 'isExternalUrl', file)) {