summaryrefslogtreecommitdiff
path: root/Hutch/Views
diff options
context:
space:
mode:
authorChris DeLuca <[email protected]>2026-05-04 14:39:01 -0400
committerChristian Cleberg <[email protected]>2026-05-04 14:55:44 -0500
commit0b93fb3cd7613a2befeebb94b41d051b70f6da28 (patch)
treeb8447110b65a23d7743c71b7a2c0a7c510a28bd0 /Hutch/Views
parent66601a8091a73f3e31f4fb534c38b3eca4756e93 (diff)
downloadhutch-0b93fb3cd7613a2befeebb94b41d051b70f6da28.tar.gz
hutch-0b93fb3cd7613a2befeebb94b41d051b70f6da28.tar.bz2
hutch-0b93fb3cd7613a2befeebb94b41d051b70f6da28.zip
Fix broken personal access token link
Diffstat (limited to 'Hutch/Views')
-rw-r--r--Hutch/Views/Auth/AuthView.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/Hutch/Views/Auth/AuthView.swift b/Hutch/Views/Auth/AuthView.swift
index d114981..91534b0 100644
--- a/Hutch/Views/Auth/AuthView.swift
+++ b/Hutch/Views/Auth/AuthView.swift
@@ -3,7 +3,7 @@ import SwiftUI
/// Token entry screen shown when the user is not authenticated.
struct TokenEntryView: View {
private let createAccountURL = URL(string: "https://meta.sr.ht/register")!
- private let personalAccessTokensURL = URL(string: "https://meta.sr.ht/oauth/personal-access-tokens")!
+ private let personalAccessTokensURL = URL(string: "https://meta.sr.ht/oauth2/personal-token")!
@Environment(AppState.self) private var appState
@State private var token = ""