diff --git a/src/MainApp.jsx b/src/MainApp.jsx
index 41a2bf7e..9039f7ba 100755
--- a/src/MainApp.jsx
+++ b/src/MainApp.jsx
@@ -37,15 +37,14 @@ const MainApp = () => {
const recaptchaSiteKeyWeb = getConfig().RECAPTCHA_SITE_KEY_WEB;
return (
-
-
+
- {getConfig().ZENDESK_KEY && }
} />
{
} />
} />
-
-
+
+
+
+
);
};
diff --git a/src/register/RegistrationPage.jsx b/src/register/RegistrationPage.jsx
index 1032416c..d0b50ae8 100644
--- a/src/register/RegistrationPage.jsx
+++ b/src/register/RegistrationPage.jsx
@@ -411,6 +411,7 @@ const RegistrationPage = (props) => {
setFormFields={setConfigurableFormFields}
autoSubmitRegisterForm={autoSubmitRegForm}
fieldDescriptions={fieldDescriptions}
+ countriesCodesList={countriesCodesList}
/>
{captchaError && (
diff --git a/src/register/components/tests/ConfigurableRegistrationForm.test.jsx b/src/register/components/tests/ConfigurableRegistrationForm.test.jsx
index aebaa596..881b3653 100644
--- a/src/register/components/tests/ConfigurableRegistrationForm.test.jsx
+++ b/src/register/components/tests/ConfigurableRegistrationForm.test.jsx
@@ -9,7 +9,6 @@ import { useGoogleReCaptcha } from 'react-google-recaptcha-v3';
import { BrowserRouter as Router } from 'react-router-dom';
import configureStore from 'redux-mock-store';
-import { APP_NAME } from '../../../data/constants';
import { registerNewUser } from '../../data/actions';
import { FIELDS } from '../../data/constants';
import { NOT_INITIALIZED } from '../../data/optimizelyExperiment/helper';