We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80aae55 commit 23de490Copy full SHA for 23de490
libs/remix-ui/solidity-compiler/src/lib/compiler-container.tsx
@@ -985,7 +985,7 @@ export const CompilerContainer = (props: CompilerContainerProps) => {
985
placement="top"
986
tooltipId="configfileOptimisationNumbeTooltip"
987
tooltipClasses="text-nowrap"
988
- tooltipText={(state.optimize ? "Enable " : "Disable ") + "opcode-based optimizer for the generated bytecode and the Yul optimizer for the Yul code"}
+ tooltipText={(!state.optimize ? "Enable " : "Disable ") + "opcode-based optimizer for the generated bytecode and the Yul optimizer for the Yul code"}
989
>
990
<div className='custom-control custom-checkbox'>
991
<input
0 commit comments