From 8fd7f8ecad7c375a9bd5db398d242a49fc0df48a Mon Sep 17 00:00:00 2001 From: Valtteri Karesto Date: Tue, 10 May 2022 11:51:49 +0300 Subject: [PATCH] Change state key --- state/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/state/index.ts b/state/index.ts index af99922..8a98b7d 100644 --- a/state/index.ts +++ b/state/index.ts @@ -75,7 +75,7 @@ export interface IState { mainModalShowed: boolean; accounts: IAccount[]; compileOptions: { - optimisationLevel: '-O0' | '-O1' | '-O2' | '-O3' | '-O4' | '-Os'; + optimizationLevel: '-O0' | '-O1' | '-O2' | '-O3' | '-O4' | '-Os'; strip: boolean } } @@ -108,7 +108,7 @@ let initialState: IState = { mainModalShowed: false, accounts: [], compileOptions: { - optimisationLevel: '-O0', + optimizationLevel: '-O0', strip: false } };