--- // Import the majors list import allMajors from "../../data/allUCSDMajors.txt?raw"; import yaml from "js-yaml"; import textConfig from "../../config/text.yml?raw"; import profileConfig from "../../config/profileConfig.yaml?raw"; import pocketbaseConfig from "../../config/pocketbaseConfig.yml?raw"; const majorsList: string[] = allMajors .split("\n") .filter((major: string) => major.trim()) .sort((a, b) => a.localeCompare(b)); // Sort alphabetically // Parse configurations const text = yaml.load(textConfig) as any; const profile = yaml.load(profileConfig) as any; const pbConfig = yaml.load(pocketbaseConfig) as any; ---

Member Management