From d96ef45503de20bebfb6883e90b3f00476c5b659 Mon Sep 17 00:00:00 2001 From: Marc Itzenthaler Date: Thu, 29 Feb 2024 16:17:41 +0100 Subject: [PATCH] fix: enable consulting type slug registration by default --- proxy/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/config.js b/proxy/config.js index 9b5d9e9b2..df181c87e 100644 --- a/proxy/config.js +++ b/proxy/config.js @@ -15,7 +15,7 @@ module.exports = { }, registration: { useConsultingTypeSlug: !!parseInt( - process.env.FRONTEND_REGISTRATION_USE_CONSULTINGTYPE_SLUG || '0' + process.env.FRONTEND_REGISTRATION_USE_CONSULTINGTYPE_SLUG || '1' ) } };