diff --git a/src/app/global/feature_flags.nim b/src/app/global/feature_flags.nim index 83b1607432..c1fc2891ac 100644 --- a/src/app/global/feature_flags.nim +++ b/src/app/global/feature_flags.nim @@ -3,7 +3,7 @@ import os const DEFAULT_FLAG_DAPPS_ENABLED = false const DEFAULT_FLAG_SWAP_ENABLED = false -const DEFAULT_FLAG_CONNECTOR_ENABLED = false +const DEFAULT_FLAG_CONNECTOR_ENABLED = true proc boolToEnv(defaultValue: bool): string = return if defaultValue: "1" else: "0" @@ -43,4 +43,4 @@ QtObject: return self.connectorEnabled QtProperty[bool] connectorEnabled: - read = getConnectorEnabled \ No newline at end of file + read = getConnectorEnabled