From b1ce1e86dd2fb0ab4056befe5d9d8fa4cfd74096 Mon Sep 17 00:00:00 2001 From: Seiike <122684677+Seeike@users.noreply.github.com> Date: Wed, 26 Mar 2025 22:04:40 +0100 Subject: [PATCH] as cranci wanted --- .../SettingsSubViews/SettingsViewGeneral.swift | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift b/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift index fe08109..a3414dc 100644 --- a/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift +++ b/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift @@ -101,10 +101,7 @@ struct SettingsViewGeneral: View { .tint(.accentColor) } - Section(header: Text("Advanced"), footer: Text("Anonymous data is collected to improve the app. No personal information is collected. This can be disabled at any time.")) { - Toggle("Enable Analytics", isOn: $analyticsEnabled) - .tint(.accentColor) - + Section(header: Text("Network"), footer: Text("Try between some of the providers in case something is not loading if it should be, as it might be the fault of your ISP.")){ HStack { Text("DNS service") Spacer() @@ -123,6 +120,11 @@ struct SettingsViewGeneral: View { .keyboardType(.numbersAndPunctuation) } } + + Section(header: Text("Advanced"), footer: Text("Anonymous data is collected to improve the app. No personal information is collected. This can be disabled at any time.")) { + Toggle("Enable Analytics", isOn: $analyticsEnabled) + .tint(.accentColor) + } } .navigationTitle("General") }