From b0c0146cc9e0df591cbc505a90a2be71f3ec663f Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 9 Sep 2021 10:54:09 +0200 Subject: [PATCH] fix default parameters --- apps/solidity-compiler/src/app/compiler.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/solidity-compiler/src/app/compiler.ts b/apps/solidity-compiler/src/app/compiler.ts index 223b5e2bc7..6f499103b9 100644 --- a/apps/solidity-compiler/src/app/compiler.ts +++ b/apps/solidity-compiler/src/app/compiler.ts @@ -18,9 +18,9 @@ const profile = { } const defaultAppParameters = { - 'hideWarnings': () => false, - 'autoCompile': () => false, - 'includeNightlies': () => false + hideWarnings: false, + autoCompile: false, + includeNightlies: false } const defaultCompilerParameters = {