summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-25 19:59:31 -0800
committerFuwn <[email protected]>2025-02-25 19:59:31 -0800
commitb390d981d49cebf632c3db964914949c5aeac658 (patch)
treeba4c68f63c49ec37ab08d496de65554e6059e043 /Sora/Views/Settings
parentfeat: Development commit (diff)
downloadsora-testing-b390d981d49cebf632c3db964914949c5aeac658.tar.xz
sora-testing-b390d981d49cebf632c3db964914949c5aeac658.zip
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings')
-rw-r--r--Sora/Views/Settings/Section/SettingsCreditsView.swift (renamed from Sora/Views/Settings/Section/SettingsAttributionsView.swift)2
-rw-r--r--Sora/Views/Settings/SettingsView.swift4
2 files changed, 3 insertions, 3 deletions
diff --git a/Sora/Views/Settings/Section/SettingsAttributionsView.swift b/Sora/Views/Settings/Section/SettingsCreditsView.swift
index 3c94c4e..741ce25 100644
--- a/Sora/Views/Settings/Section/SettingsAttributionsView.swift
+++ b/Sora/Views/Settings/Section/SettingsCreditsView.swift
@@ -1,6 +1,6 @@
import SwiftUI
-struct SettingsAttributionsView: View {
+struct SettingsCreditsView: View {
var body: some View {
Text("Rabbit SVG created by Kim Sun Young")
.fontWeight(.light)
diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift
index a0eba01..2d09168 100644
--- a/Sora/Views/Settings/SettingsView.swift
+++ b/Sora/Views/Settings/SettingsView.swift
@@ -28,8 +28,8 @@ struct SettingsView: View {
}
}
- Section(header: Text("Attributions")) {
- SettingsAttributionsView()
+ Section(header: Text("Credits")) {
+ SettingsCreditsView()
}
}
#if os(macOS)