mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 23:05:17 +00:00
4dfa0a1b05
Also: - mock FeatureFlags nim to silence `Global.qml` warnings Updates: #14556
11 lines
240 B
QML
11 lines
240 B
QML
// Mock of src/app/global/feature_flags.nim
|
|
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
readonly property string contextPropertyName: "featureFlagsRootContextProperty"
|
|
|
|
//
|
|
// Silence warnings
|
|
readonly property bool dappsEnabled: true
|
|
}
|