From c9a0488e8992b0870597e4e90a03013602721132 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Mon, 15 Nov 2021 14:02:05 -0400 Subject: [PATCH] fix: waku2 lightmode selector --- ui/app/AppLayouts/Profile/views/AdvancedView.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Profile/views/AdvancedView.qml b/ui/app/AppLayouts/Profile/views/AdvancedView.qml index 8941e504bf..a8f31171be 100644 --- a/ui/app/AppLayouts/Profile/views/AdvancedView.qml +++ b/ui/app/AppLayouts/Profile/views/AdvancedView.qml @@ -363,7 +363,7 @@ ScrollView { btnText: qsTrId("light-node") onToggled: { if (!root.store.isWakuV2LightClient) { - openPopup(wakuV2ModeConfirmationDialogComponent, {light: true}) + openPopup(wakuV2ModeConfirmationDialogComponent, {mode: true}) } else { btnWakuV2Light.click() } @@ -378,7 +378,7 @@ ScrollView { btnText: qsTrId("full-node") onToggled: { if (root.store.isWakuV2LightClient) { - openPopup(wakuV2ModeConfirmationDialogComponent, {light: false}) + openPopup(wakuV2ModeConfirmationDialogComponent, {mode: false}) } else { btnWakuV2Full.click() }