From a0b2702bed57d5a2b226b2f0ad389f47df3655ad Mon Sep 17 00:00:00 2001 From: chark1es Date: Sun, 2 Feb 2025 04:15:38 -0800 Subject: [PATCH] remove temp notification settings --- src/components/profile/UserSettings.astro | 299 ++++++++++++++++------ 1 file changed, 227 insertions(+), 72 deletions(-) diff --git a/src/components/profile/UserSettings.astro b/src/components/profile/UserSettings.astro index f143c14..b321417 100644 --- a/src/components/profile/UserSettings.astro +++ b/src/components/profile/UserSettings.astro @@ -3,7 +3,8 @@ import allMajors from "../../data/allUCSDMajors.txt?raw"; const majorsList: string[] = allMajors .split("\n") - .filter((major: string) => major.trim()); + .filter((major: string) => major.trim()) + .sort((a, b) => a.localeCompare(b)); // Sort alphabetically ---
@@ -144,82 +145,136 @@ const majorsList: string[] = allMajors >Upload your latest resume -
-

- No resume uploaded -

- -
- - -
-
- - - -

- Notification Preferences -

-
- -
-
-
-

Event Reminders

-

- Get notified about upcoming events -

-
- -
-
-
-

Newsletter

-

- Receive our monthly newsletter -

-
- -
-
-
+ + + + + + + +