summaryrefslogtreecommitdiff
path: root/Hutch/Views/More
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-23 17:39:13 -0500
committerChristian Cleberg <[email protected]>2026-04-23 17:39:13 -0500
commit66601a8091a73f3e31f4fb534c38b3eca4756e93 (patch)
treef85cd883e63177d25dfe5993a4d545efa4812923 /Hutch/Views/More
parent380fb866d090c5f13b2ad3f88f1fe23c4ade4801 (diff)
downloadhutch-3.2.1.tar.gz
hutch-3.2.1.tar.bz2
hutch-3.2.1.zip
fix: profile loading error and user-timeline prefs updatev3.2.1
Diffstat (limited to 'Hutch/Views/More')
-rw-r--r--Hutch/Views/More/ProfileView.swift4
1 files changed, 2 insertions, 2 deletions
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?"
}