From 66601a8091a73f3e31f4fb534c38b3eca4756e93 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Thu, 23 Apr 2026 17:39:13 -0500 Subject: fix: profile loading error and user-timeline prefs update --- Hutch/Views/More/ProfileView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Hutch/Views/More/ProfileView.swift') diff --git a/Hutch/Views/More/ProfileView.swift b/Hutch/Views/More/ProfileView.swift index 8f353ee..45f7d06 100644 --- a/Hutch/Views/More/ProfileView.swift +++ b/Hutch/Views/More/ProfileView.swift @@ -243,7 +243,7 @@ struct ProfileView: View { Section { ForEach(viewModel.sshKeys) { key in VStack(alignment: .leading, spacing: 2) { - Text(key.fingerprint) + Text(key.displayLabel) .font(.caption.monospaced()) .lineLimit(1) .truncationMode(.middle) @@ -677,7 +677,7 @@ private enum ProfileDestructiveAction { var message: String { switch self { case .deleteSSHKey(let key): - "Remove SSH key \(key.fingerprint) from your account?" + "Remove \(key.displayLabel) from your account?" case .deletePGPKey(let key): "Remove PGP key \(key.fingerprint) from your account?" } -- cgit v1.2.3