From f752264101d417f0d17b9ee167875b6c09a11bf8 Mon Sep 17 00:00:00 2001 From: Jeff Sieu Date: Sun, 6 Nov 2022 16:10:13 +0800 Subject: [PATCH] [questions][feat] add theory questions (#519) --- apps/portal/src/utils/questions/constants.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/portal/src/utils/questions/constants.ts b/apps/portal/src/utils/questions/constants.ts index 94f63c85..b1746821 100644 --- a/apps/portal/src/utils/questions/constants.ts +++ b/apps/portal/src/utils/questions/constants.ts @@ -36,6 +36,11 @@ export const QUESTION_TYPES: FilterChoices = [ label: 'Behavioral', value: 'BEHAVIORAL', }, + { + id: 'THEORY', + label: 'Theory', + value: 'THEORY', + }, ] as const; export type QuestionAge = 'all' | 'last-6-months' | 'last-month' | 'last-year';