diff --git a/AltStore/Views/Settings/SettingsView.swift b/AltStore/Views/Settings/SettingsView.swift index 84e4775d..715616c0 100644 --- a/AltStore/Views/Settings/SettingsView.swift +++ b/AltStore/Views/Settings/SettingsView.swift @@ -38,7 +38,6 @@ struct SettingsView: View { var body: some View { List { Section { - if let connectedAppleID = connectedTeams.first { HStack { Text(L10n.SettingsView.ConnectedAppleID.name) @@ -89,6 +88,12 @@ struct SettingsView: View { } } + Section { + NavigationLink(L10n.AppIconsView.title) { + AppIconsView() + } + } + Section { Toggle(isOn: self.$isBackgroundRefreshEnabled, label: { Text(L10n.SettingsView.backgroundRefresh) @@ -150,10 +155,6 @@ struct SettingsView: View { } Section { - NavigationLink(L10n.AppIconsView.title) { - AppIconsView() - } - NavigationLink("Show Error Log") { ErrorLogView() }