[questions][feat] add theory questions (#519)

This commit is contained in:
Jeff Sieu
2022-11-06 16:10:13 +08:00
committed by GitHub
parent c2288ba69c
commit f752264101

View File

@@ -36,6 +36,11 @@ export const QUESTION_TYPES: FilterChoices<QuestionsQuestionType> = [
label: 'Behavioral',
value: 'BEHAVIORAL',
},
{
id: 'THEORY',
label: 'Theory',
value: 'THEORY',
},
] as const;
export type QuestionAge = 'all' | 'last-6-months' | 'last-month' | 'last-year';