summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/Section/SettingsDebugView.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-21 18:11:57 -0700
committerFuwn <[email protected]>2025-09-21 18:11:57 -0700
commit0ba2031ec786f15bce7676ff0b981a53b5beeb49 (patch)
treec51b3b3053b32c174733da698550927ac6c0a84b /Sora/Views/Settings/Section/SettingsDebugView.swift
parentfeat: Development commit (diff)
downloadsora-testing-0ba2031ec786f15bce7676ff0b981a53b5beeb49.tar.xz
sora-testing-0ba2031ec786f15bce7676ff0b981a53b5beeb49.zip
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings/Section/SettingsDebugView.swift')
-rw-r--r--Sora/Views/Settings/Section/SettingsDebugView.swift8
1 files changed, 4 insertions, 4 deletions
diff --git a/Sora/Views/Settings/Section/SettingsDebugView.swift b/Sora/Views/Settings/Section/SettingsDebugView.swift
index ef817a3..81c7b68 100644
--- a/Sora/Views/Settings/Section/SettingsDebugView.swift
+++ b/Sora/Views/Settings/Section/SettingsDebugView.swift
@@ -6,19 +6,19 @@ struct SettingsDebugView: View {
var body: some View {
Button(action: {
#if DEBUG
- settingsManager.addDummyBookmarks()
+ settingsManager.addSampleBookmarks()
#endif
}) {
- Text("Add Dummy Bookmarks")
+ Text("Add Sample Bookmarks")
}
.trailingFrame()
Button(action: {
#if DEBUG
- settingsManager.addDummySearchHistory()
+ settingsManager.addSampleSearchHistory()
#endif
}) {
- Text("Add Dummy Search History")
+ Text("Add Sample Search History")
}
.trailingFrame()
}