From 703e592151164ee6fc5f137606757cd173f40030 Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Mon, 11 Dec 2023 07:11:11 +1100 Subject: [PATCH] reorder settings menu --- interface/src/pages/Settings.tsx | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/interface/src/pages/Settings.tsx b/interface/src/pages/Settings.tsx index 2ab45b17..1911233d 100644 --- a/interface/src/pages/Settings.tsx +++ b/interface/src/pages/Settings.tsx @@ -26,19 +26,9 @@ const Settings: React.FC = () => { const settings: SettingsList[] = [ { - title: "Notification Collector", - description: "Uncaps the 9+ limit for notifications, showing the real number.", - modifyElement: switchChange('notificationCollector', isOn)} /> - }, - { - title: "Lesson Alerts", - description: "Sends a native browser notification ~5 minutes prior to lessons.", - modifyElement: switchChange('lessonAlerts', isOn)} /> - }, - { - title: "Telemetry", - description: "Enables/disables error collecting.", - modifyElement: switchChange('telemetry', isOn)} /> + title: "Transparency Effects", + description: "Enables transparency effects on certain elements such as blur. (May impact battery life)", + modifyElement: switchChange('transparencyEffects', isOn)} /> }, { title: "Animated Background", @@ -55,15 +45,25 @@ const Settings: React.FC = () => { description: "Customise the overall theme colour of SEQTA Learn.", modifyElement: }, + { + title: "Telemetry", + description: "Enables/disables error collecting.", + modifyElement: switchChange('telemetry', isOn)} /> + }, { title: "Edit Sidebar Layout", description: "Customise the sidebar layout.", modifyElement: }, { - title: "Transparency Effects", - description: "Enables transparency effects on certain elements such as blur. (May impact battery life)", - modifyElement: switchChange('transparencyEffects', isOn)} /> + title: "Notification Collector", + description: "Uncaps the 9+ limit for notifications, showing the real number.", + modifyElement: switchChange('notificationCollector', isOn)} /> + }, + { + title: "Lesson Alerts", + description: "Sends a native browser notification ~5 minutes prior to lessons.", + modifyElement: switchChange('lessonAlerts', isOn)} /> }, { title: "BetterSEQTA+",