From ea2d7ed83975c6ec1ca5b66308338cd6317d9f89 Mon Sep 17 00:00:00 2001 From: alangsto <46360176+alangsto@users.noreply.github.com> Date: Fri, 18 Aug 2023 08:52:25 -0400 Subject: [PATCH] feat: add config value for chat response url (#1163) --- src/index.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.jsx b/src/index.jsx index a509e1f6a8..aead22b66c 100755 --- a/src/index.jsx +++ b/src/index.jsx @@ -137,6 +137,7 @@ initialize({ EXAMS_BASE_URL: process.env.EXAMS_BASE_URL || null, PROCTORED_EXAM_FAQ_URL: process.env.PROCTORED_EXAM_FAQ_URL || null, PROCTORED_EXAM_RULES_URL: process.env.PROCTORED_EXAM_RULES_URL || null, + CHAT_RESPONSE_URL: process.env.CHAT_RESPONSE_URL || null, }, 'LearnerAppConfig'); }, },