summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/Section/SettingsDebugView.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-22 02:22:32 -0700
committerFuwn <[email protected]>2025-09-22 02:22:32 -0700
commit1d634eafc0c316e0a88d1e321a9025f1c944686a (patch)
tree673eca151426d0db04ab4cbb3ff10f9ed2a9c8df /Sora/Views/Settings/Section/SettingsDebugView.swift
parentfeat: Development commit (diff)
downloadsora-testing-1d634eafc0c316e0a88d1e321a9025f1c944686a.tar.xz
sora-testing-1d634eafc0c316e0a88d1e321a9025f1c944686a.zip
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings/Section/SettingsDebugView.swift')
-rw-r--r--Sora/Views/Settings/Section/SettingsDebugView.swift25
1 files changed, 0 insertions, 25 deletions
diff --git a/Sora/Views/Settings/Section/SettingsDebugView.swift b/Sora/Views/Settings/Section/SettingsDebugView.swift
deleted file mode 100644
index 81c7b68..0000000
--- a/Sora/Views/Settings/Section/SettingsDebugView.swift
+++ /dev/null
@@ -1,25 +0,0 @@
-import SwiftUI
-
-struct SettingsDebugView: View {
- @EnvironmentObject private var settingsManager: SettingsManager
-
- var body: some View {
- Button(action: {
- #if DEBUG
- settingsManager.addSampleBookmarks()
- #endif
- }) {
- Text("Add Sample Bookmarks")
- }
- .trailingFrame()
-
- Button(action: {
- #if DEBUG
- settingsManager.addSampleSearchHistory()
- #endif
- }) {
- Text("Add Sample Search History")
- }
- .trailingFrame()
- }
-}