From fcff7e5f7258b7beba29855e0a90350c96791fa5 Mon Sep 17 00:00:00 2001 From: SekoiaTree <51149447+SekoiaTree@users.noreply.github.com> Date: Tue, 10 Mar 2026 08:15:28 +0100 Subject: [PATCH] feat: add DH to sections --- src/actions/common-client.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/actions/common-client.tsx b/src/actions/common-client.tsx index 3bedeec..791546e 100644 --- a/src/actions/common-client.tsx +++ b/src/actions/common-client.tsx @@ -19,6 +19,7 @@ export const IC_SECTIONS = [ 'Communication Systems', 'Data Science', 'Cyber Security', + 'Digital Humanities', ] as const; export type ICSections = (typeof IC_SECTIONS)[number]; @@ -27,6 +28,7 @@ export const SECTIONS = [ 'Communication Systems', 'Data Science', 'Cyber Security', + 'Digital Humanities', 'Other', ] as const; export type Sections = (typeof SECTIONS)[number];