From 26b577824a0936d3acce0bfc4f4f33171231dc4d Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Wed, 10 Nov 2021 13:14:18 +0100 Subject: [PATCH] fix(@desktop/communities): Fix for can't import community fixes #4073 --- .../Chat/popups/community/AccessExistingCommunityPopup.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/popups/community/AccessExistingCommunityPopup.qml b/ui/app/AppLayouts/Chat/popups/community/AccessExistingCommunityPopup.qml index 30b7ec5d97..1ad52c9470 100644 --- a/ui/app/AppLayouts/Chat/popups/community/AccessExistingCommunityPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/community/AccessExistingCommunityPopup.qml @@ -18,6 +18,7 @@ StatusModal { property string error: "" property string keyValidationError: "" + property string communityKey: "" function validate() { keyValidationError = ""; @@ -75,7 +76,7 @@ StatusModal { return; } - let communityKey = keyInput.text.trim(); + communityKey = keyInput.text.trim(); if (!communityKey.startsWith("0x")) { communityKey = "0x" + communityKey; }