Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rimrakhimov committed Mar 6, 2024
1 parent 833424f commit 52a50c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 52a50c2

Please sign in to comment.