From 3eb61992eb330a9fc3b95962000d6366dc8d8d41 Mon Sep 17 00:00:00 2001 From: neoarz Date: Sun, 20 Apr 2025 22:33:31 -0400 Subject: [PATCH] fix links --- StikJIT/Views/SettingsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StikJIT/Views/SettingsView.swift b/StikJIT/Views/SettingsView.swift index 5cb043dd..fe289b5e 100644 --- a/StikJIT/Views/SettingsView.swift +++ b/StikJIT/Views/SettingsView.swift @@ -39,7 +39,7 @@ struct SettingsView: View { // Developer profile image URLs private let developerProfiles: [String: String] = [ - "Stephen": "https://github.com/0-Blu.png", + "Stephen": "https://github.com/StephenDev0.png", "jkcoxson": "https://github.com/jkcoxson.png", "Stossy11": "https://github.com/Stossy11.png", "Neo": "https://github.com/neoarz.png", @@ -321,7 +321,7 @@ struct SettingsView: View { .background(Color(UIColor.tertiarySystemBackground)) .cornerRadius(12) .onTapGesture { - if let url = URL(string: "https://github.com/0-Blu") { + if let url = URL(string: "https://github.com/StephenDev0") { UIApplication.shared.open(url) } }