diff --git a/src/app/global/feature_flags.nim b/src/app/global/feature_flags.nim index e3b0a08c5d..40cf2bffec 100644 --- a/src/app/global/feature_flags.nim +++ b/src/app/global/feature_flags.nim @@ -4,7 +4,7 @@ import os const DEFAULT_FLAG_DAPPS_ENABLED = false const DEFAULT_FLAG_SWAP_ENABLED = true const DEFAULT_FLAG_CONNECTOR_ENABLED* = false -const DEFAULT_FLAG_SEND_VIA_PERSONAL_CHAT_ENABLED = false +const DEFAULT_FLAG_SEND_VIA_PERSONAL_CHAT_ENABLED = true proc boolToEnv*(defaultValue: bool): string = return if defaultValue: "1" else: "0"