summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/Section/SettingsSearchView.swift
blob: 63be2f1d7b921acc79d3fa812491df66d7b317d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
import SwiftUI

struct SettingsSearchView: View {
  @EnvironmentObject var settings: Settings

  var body: some View {
    Toggle("Suggest Search Tags", isOn: $settings.searchSuggestions)
  }
}