Removed unnecessary setting

This commit is contained in:
Valtteri Karesto
2022-05-03 14:17:36 +03:00
parent aa7e1517a2
commit 501b7fefec
2 changed files with 1 additions and 8 deletions

View File

@@ -69,13 +69,6 @@ const CompilerSettings = () => {
>
-Os
</Button>
<Button
css={{ fontFamily: "$monospace" }}
outline={snap.compileOptions !== "-Oz"}
onClick={() => (state.compileOptions = "-Oz")}
>
-Oz
</Button>
</ButtonGroup>
</Flex>
);

View File

@@ -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;