summaryrefslogtreecommitdiff
path: root/Hutch/Views/Settings/SettingsViewModel.swift
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/Settings/SettingsViewModel.swift
parent380fb866d090c5f13b2ad3f88f1fe23c4ade4801 (diff)
downloadhutch-66601a8091a73f3e31f4fb534c38b3eca4756e93.tar.gz
hutch-66601a8091a73f3e31f4fb534c38b3eca4756e93.tar.bz2
hutch-66601a8091a73f3e31f4fb534c38b3eca4756e93.zip
fix: profile loading error and user-timeline prefs updatev3.2.1
Diffstat (limited to 'Hutch/Views/Settings/SettingsViewModel.swift')
-rw-r--r--Hutch/Views/Settings/SettingsViewModel.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/Hutch/Views/Settings/SettingsViewModel.swift b/Hutch/Views/Settings/SettingsViewModel.swift
index 0b55e6a..edfaad4 100644
--- a/Hutch/Views/Settings/SettingsViewModel.swift
+++ b/Hutch/Views/Settings/SettingsViewModel.swift
@@ -90,7 +90,7 @@ final class SettingsViewModel {
avatar
userType
sshKeys {
- results { id fingerprint comment created lastUsed }
+ results { id comment created lastUsed }
cursor
}
pgpKeys {
@@ -114,7 +114,7 @@ final class SettingsViewModel {
private static let createSSHKeyMutation = """
mutation createSSHKey($key: String!) {
createSSHKey(key: $key) {
- id fingerprint comment created lastUsed
+ id comment created lastUsed
}
}
"""