When user selects "Other Education" and clicks save - error occurs. It's caused by the wrong API call payload value `'o'` Fix: use the `'other'` payload value instead (the valid one).
29 lines
292 B
JavaScript
29 lines
292 B
JavaScript
const EDUCATION_LEVELS = [
|
|
'p',
|
|
'm',
|
|
'b',
|
|
'a',
|
|
'hs',
|
|
'jhs',
|
|
'el',
|
|
'none',
|
|
'other',
|
|
];
|
|
|
|
const SOCIAL = {
|
|
linkedin: {
|
|
title: 'LinkedIn',
|
|
},
|
|
twitter: {
|
|
title: 'Twitter',
|
|
},
|
|
facebook: {
|
|
title: 'Facebook',
|
|
},
|
|
};
|
|
|
|
export {
|
|
EDUCATION_LEVELS,
|
|
SOCIAL,
|
|
};
|