Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions StikJIT/Views/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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)
}
}
Expand Down