diff --git a/getOfficers.ts b/getOfficers.ts index de9561d..9ca409f 100644 --- a/getOfficers.ts +++ b/getOfficers.ts @@ -46,6 +46,7 @@ export default async function getOfficerData( ['ICPC', 'icpc'], ['Teach LA', 'teachla'], ['W', 'w'], + ['Cloud', 'cloud'], ]); // // Store officer data const officers: object[] = []; // list of officers in desired committee diff --git a/scripts/lib.mjs b/scripts/lib.mjs index f60d23d..c5759b4 100644 --- a/scripts/lib.mjs +++ b/scripts/lib.mjs @@ -16,6 +16,7 @@ const getCssStringFromCommittee = (committee) => { case 'icpc': case 'studio': case 'w': + case 'cloud': return committee.toLowerCase(); default: throw new Error(`Unrecognized string ${committee}`);