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 -

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