Word Replacements now default and first

This commit is contained in:
Beingpax 2025-07-23 10:34:08 +05:45
parent 5a3c6d7bfe
commit 71f4190f39

View File

@ -1,12 +1,12 @@
import SwiftUI
struct DictionarySettingsView: View {
@State private var selectedSection: DictionarySection = .spellings
@State private var selectedSection: DictionarySection = .replacements
let whisperPrompt: WhisperPrompt
enum DictionarySection: String, CaseIterable {
case spellings = "Correct Spellings"
case replacements = "Word Replacements"
case spellings = "Correct Spellings"
var description: String {
switch self {