Skip to content

Commit e38b50b

Browse files
committed
chore: make is_country_code_dropdown_enabled boolean to false first
1 parent 3d52a34 commit e38b50b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/account/src/Components/forms/personal-details-form.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const PersonalDetailsForm = props => {
4343
// need to put this check related to DIEL clients
4444
const is_svg_only = is_svg && !is_eu_user;
4545

46-
const is_country_code_dropdown_enabled = true;
46+
const is_country_code_dropdown_enabled = false;
4747

4848
const { errors, touched, values, setFieldValue, handleChange, handleBlur } = useFormikContext();
4949

packages/account/src/Components/personal-details/personal-details.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const PersonalDetails = observer(
7979
} = useStore();
8080
const { account_status, account_settings, residence, real_account_signup_target } = props;
8181

82-
const is_country_code_dropdown_enabled = true;
82+
const is_country_code_dropdown_enabled = false;
8383
const { isDesktop } = useDevice();
8484
const handleCancel = (values: TPersonalDetailsSectionForm) => {
8585
const current_step = getCurrentStep() - 1;

packages/core/src/App/Containers/RealAccountSignup/account-wizard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const StepperHeader = ({ has_target, has_real_account, items, getCurrentStep, ge
5757
const AccountWizard = observer(props => {
5858
const { client, notifications, ui, traders_hub } = useStore();
5959

60-
const is_country_code_dropdown_enabled = true;
60+
const is_country_code_dropdown_enabled = false;
6161
const { selected_phone_code } = useGetPhoneNumberList();
6262

6363
const { is_eu_user } = traders_hub;

0 commit comments

Comments
 (0)