- Wiring up nom and phone registration bits
- Added guided registration
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user