- Wiring up nom and phone registration bits

- Added guided registration
This commit is contained in:
Mike Fitzpatrick
2019-08-14 11:18:21 -04:00
parent cf07ab1c2e
commit c146884636
11 changed files with 190 additions and 118 deletions

View File

@@ -52,10 +52,10 @@ export const PERMISSIONS = {
FACEBOOK: ['email', 'public_profile'],
};
export const PHONE_TYPES = {
HOME: { label: 'home', value: 'home' },
MOBILE: { label: 'mobile', value: 'mobile' },
WORK: { label: 'work', value: 'work' },
};
export const PHONE_TYPES = [
{ label: 'home', value: 'home' },
{ label: 'mobile', value: 'mobile' },
{ label: 'work', value: 'work' },
];
export const PHONE_TYPE_DEFAULT = PHONE_TYPES.HOME.value;
export const PHONE_TYPE_DEFAULT = PHONE_TYPES[0].value;