pull/3321/head^2
Joseph Izang 2 years ago committed by Aniket
parent 189d8c9490
commit 41dd8d871e
  1. 3
      libs/remix-ui/solidity-compiler/src/lib/contract-selection.tsx

@ -233,7 +233,8 @@ export const ContractSelection = (props: ContractSelectionProps) => {
}
const showFlattener = () => {
const confirmNodeType = api.getCompilationResult().data.sources[api.currentFile].ast.nodes.some(x => x.nodeType === 'ImportDirective')
const confirmNodeType = api.getCompilationResult().data.sources[api.currentFile]
.ast.nodes.some(x => x.nodeType === 'ImportDirective')
const currentFile = api.currentFile.split('/')[1]
const contractListConfirm = contractList.some(x => x.file === currentFile)
return confirmNodeType && contractListConfirm

Loading…
Cancel
Save