Skip to content
Open
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
9 changes: 9 additions & 0 deletions Wisp/Views/Settings/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ struct SettingsView: View {
claudeSection
instructionsSection
appearanceSection
aboutSection
#if DEBUG
developerSection
#endif
Expand Down Expand Up @@ -214,6 +215,14 @@ struct SettingsView: View {
}
}

private var aboutSection: some View {
Section("About") {
Link(destination: URL(string: "https://github.com/mcintyre94/wisp")!) {
Label("Open Source", systemImage: "chevron.left.forwardslash.chevron.right")
}
}
}

#if DEBUG
private var developerSection: some View {
Section {
Expand Down
Loading