From ac04e34c21c8d1772ca5bf7b39ab4aeb659c3045 Mon Sep 17 00:00:00 2001 From: Andrey Bocharnikov Date: Fri, 26 Jul 2024 20:44:20 +0400 Subject: [PATCH] fix(wakunodes): temporarily hide "add waku nodes" in advanced settings Fixes #14929 Correct fix should be done as part of https://github.com/status-im/status-go/issues/5597 after dependency tasks are done --- ui/app/AppLayouts/Profile/popups/WakuNodesModal.qml | 1 + ui/app/AppLayouts/Profile/popups/WakuStoreModal.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/ui/app/AppLayouts/Profile/popups/WakuNodesModal.qml b/ui/app/AppLayouts/Profile/popups/WakuNodesModal.qml index f221c1751d..aeb634d9d5 100644 --- a/ui/app/AppLayouts/Profile/popups/WakuNodesModal.qml +++ b/ui/app/AppLayouts/Profile/popups/WakuNodesModal.qml @@ -57,6 +57,7 @@ StatusModal { } StatusBaseText { + visible: false // FIXME: hide for now (https://github.com/status-im/status-go/issues/5597) text: qsTr("Add a new node") color: Theme.palette.primaryColor1 width: parent.width diff --git a/ui/app/AppLayouts/Profile/popups/WakuStoreModal.qml b/ui/app/AppLayouts/Profile/popups/WakuStoreModal.qml index 5a8f2cebe6..b864b9adfb 100644 --- a/ui/app/AppLayouts/Profile/popups/WakuStoreModal.qml +++ b/ui/app/AppLayouts/Profile/popups/WakuStoreModal.qml @@ -116,6 +116,7 @@ StatusModal { } StatusBaseText { + visible: false // FIXME: hide for now (https://github.com/status-im/status-go/issues/5597) text: qsTr("Add a new node") color: Theme.palette.primaryColor1 width: parent.width