From 795718b39f8dd7bb1ed822542a2df4bfa8c2c812 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Thu, 4 Apr 2024 13:05:29 +0200 Subject: [PATCH] chore: fix double permissionsModel preparation we already build it anyway in the Popups.qml when opening the community intro dialog in all the flows --- ui/app/AppLayouts/stores/RootStore.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/app/AppLayouts/stores/RootStore.qml b/ui/app/AppLayouts/stores/RootStore.qml index 6f9270b5e7..3d4433cbf8 100644 --- a/ui/app/AppLayouts/stores/RootStore.qml +++ b/ui/app/AppLayouts/stores/RootStore.qml @@ -38,10 +38,6 @@ QtObject { } property string communityKeyToImport - onCommunityKeyToImportChanged: { - if (!!communityKeyToImport) - root.prepareTokenModelForCommunity(communityKeyToImport); - } readonly property var permissionsModel: !!root.communitiesModuleInst.spectatedCommunityPermissionModel ? root.communitiesModuleInst.spectatedCommunityPermissionModel : null