From 8d35a448ba8c77af6a68c99af05af84562ebf1bc Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Wed, 17 Jun 2026 01:45:23 -0300 Subject: [PATCH] remove chars in private accounts section --- src/qml/views/AccountsPanel.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/qml/views/AccountsPanel.qml b/src/qml/views/AccountsPanel.qml index 9775fa9..7cfcb1e 100644 --- a/src/qml/views/AccountsPanel.qml +++ b/src/qml/views/AccountsPanel.qml @@ -7,7 +7,6 @@ import Logos.Controls // TODO: remove relative paths and use qmldir instead import "../controls" import "../popups" -import "../Base58.js" as Base58 Rectangle { id: root @@ -144,7 +143,7 @@ Rectangle { LogosText { text: model.isPublic ? qsTr("Public Accounts") - : qsTr("Private — %1").arg(Base58.encode(model.sectionKey ?? "").slice(0, 8)) + : qsTr("Private") font.pixelSize: Theme.typography.secondaryText font.bold: true color: Theme.palette.textSecondary