From e42fa12dafe264c665d2574c93b54ddafe7f2e1f Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 22 Feb 2025 00:07:44 -0800 Subject: feat: Development commit --- Sora/Views/Settings/SettingsDetailsView.swift | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Sora/Views/Settings/SettingsDetailsView.swift') diff --git a/Sora/Views/Settings/SettingsDetailsView.swift b/Sora/Views/Settings/SettingsDetailsView.swift index 6b9be8d..713577c 100644 --- a/Sora/Views/Settings/SettingsDetailsView.swift +++ b/Sora/Views/Settings/SettingsDetailsView.swift @@ -1,13 +1,13 @@ import SwiftUI struct SettingsDetailsView: View { - @EnvironmentObject var settings: Settings + @EnvironmentObject var settings: Settings - var body: some View { - Picker("Detail View Type", selection: $settings.detailViewType) { - ForEach(BooruPostFileType.allCases, id: \.self) { type in - Text(type.rawValue.capitalized).tag(type) - } - } + var body: some View { + Picker("Detail View Type", selection: $settings.detailViewType) { + ForEach(BooruPostFileType.allCases, id: \.self) { type in + Text(type.rawValue.capitalized).tag(type) + } } + } } -- cgit v1.2.3