diff --git a/app/client/ui/WelcomeQuestions.ts b/app/client/ui/WelcomeQuestions.ts index ac1b1f8a..2683cd8c 100644 --- a/app/client/ui/WelcomeQuestions.ts +++ b/app/client/ui/WelcomeQuestions.ts @@ -27,9 +27,9 @@ export function showWelcomeQuestions(userPrefsObs: Observable) { const showQuestions = getUserPrefObs(userPrefsObs, 'showNewUserQuestions'); async function onConfirm() { - const selected = choices.filter((c, i) => selection[i].get()).map(c => t(c.textKey)); + const selected = choices.filter((c, i) => selection[i].get()).map(c => c.textKey); const use_cases = ['L', ...selected]; // Format to populate a ChoiceList column - const use_other = selected.includes(t("Other")) ? otherText.get() : ''; + const use_other = selected.includes("Other") ? otherText.get() : ''; const submitUrl = new URL(window.location.href); submitUrl.pathname = '/welcome/info';