feat@(desktop/wallet): Make Send Via Personal chat enabled by default

This commit is contained in:
Khushboo Mehta 2024-09-18 15:47:46 +02:00 committed by Khushboo-dev-cpp
parent b3e336987c
commit 2a57b21761
1 changed files with 1 additions and 1 deletions

View File

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