diff --git a/apps/solidity-compiler/src/app/compiler-api.ts b/apps/solidity-compiler/src/app/compiler-api.ts index 596ea04446..745c4ec8f0 100644 --- a/apps/solidity-compiler/src/app/compiler-api.ts +++ b/apps/solidity-compiler/src/app/compiler-api.ts @@ -283,10 +283,12 @@ export const CompilerApiMixin = (Base) => class extends Base { if (success) { // forwarding the event to the appManager infra this.emit('compilationFinished', source.target, source, 'soljson', data, input, version) - if (data.errors && data.errors.length > 0) { + const hideWarnings = await this.getAppParameter('hideWarnings') + if (data.errors && data.errors.length > 0 && !hideWarnings) { + const warningsCount = data.errors.length this.statusChanged({ - key: data.errors.length, - title: `compilation finished successful with warning${data.errors.length > 1 ? 's' : ''}`, + key: warningsCount, + title: `compilation successful with ${warningsCount} warning${warningsCount > 1 ? 's' : ''}`, type: 'warning' }) } else this.statusChanged({ key: 'succeed', title: 'compilation successful', type: 'success' }) diff --git a/libs/remix-ui/solidity-compiler/src/lib/solidity-compiler.tsx b/libs/remix-ui/solidity-compiler/src/lib/solidity-compiler.tsx index 5b717e7712..328797acf3 100644 --- a/libs/remix-ui/solidity-compiler/src/lib/solidity-compiler.tsx +++ b/libs/remix-ui/solidity-compiler/src/lib/solidity-compiler.tsx @@ -43,7 +43,7 @@ export const SolidityCompiler = (props: SolidityCompilerProps) => { const hide = await api.getAppParameter('hideWarnings') as boolean || false setHideWarnings(hide) })() - }, []) + }, [compileErrors]) useEffect(() => { if (badgeStatus[currentFile]) {