Removed unnecessary setting
This commit is contained in:
@@ -69,13 +69,6 @@ const CompilerSettings = () => {
|
||||
>
|
||||
-Os
|
||||
</Button>
|
||||
<Button
|
||||
css={{ fontFamily: "$monospace" }}
|
||||
outline={snap.compileOptions !== "-Oz"}
|
||||
onClick={() => (state.compileOptions = "-Oz")}
|
||||
>
|
||||
-Oz
|
||||
</Button>
|
||||
</ButtonGroup>
|
||||
</Flex>
|
||||
);
|
||||
|
||||
@@ -74,7 +74,7 @@ export interface IState {
|
||||
mainModalOpen: boolean;
|
||||
mainModalShowed: boolean;
|
||||
accounts: IAccount[];
|
||||
compileOptions: '-O0' | '-O1' | '-O2' | '-O3' | '-O4' | '-Os' | '-Oz';
|
||||
compileOptions: '-O0' | '-O1' | '-O2' | '-O3' | '-O4' | '-Os';
|
||||
}
|
||||
|
||||
// let localStorageState: null | string = null;
|
||||
|
||||
Reference in New Issue
Block a user