mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-19 03:01:53 +10:00
Merge remote-tracking branch 'upstream/develop' into develop
This commit is contained in:
@ -23,8 +23,7 @@ const SocialModal = () => {
|
||||
username: Yup.string().required(t('shared.forms.validation.required')),
|
||||
url: Yup.string()
|
||||
.min(5, t('shared.forms.validation.min', { number: 5 }))
|
||||
.required(t('shared.forms.validation.required'))
|
||||
.url(t('shared.forms.validation.url')),
|
||||
.required(t('shared.forms.validation.required')),
|
||||
});
|
||||
|
||||
return (
|
||||
|
||||
@ -6,7 +6,7 @@ import { formatDate } from '../../../utils';
|
||||
|
||||
const BirthDateB = () => {
|
||||
const { data } = useContext(PageContext);
|
||||
const Icon = get(Icons, 'birthdaycake');
|
||||
const Icon = get(Icons, 'birthday');
|
||||
|
||||
if (data.profile.birthDate) {
|
||||
return (
|
||||
|
||||
@ -6,7 +6,7 @@ import { formatDate } from '../../../utils';
|
||||
|
||||
const BirthDateC = () => {
|
||||
const { data } = useContext(PageContext);
|
||||
const Icon = get(Icons, 'birthdaycake');
|
||||
const Icon = get(Icons, 'birthday');
|
||||
|
||||
if (data.profile.birthDate) {
|
||||
return (
|
||||
|
||||
@ -10,6 +10,8 @@ import {
|
||||
FaBehance,
|
||||
FaGitlab,
|
||||
FaBirthdayCake,
|
||||
FaTelegram,
|
||||
FaSkype,
|
||||
} from 'react-icons/fa';
|
||||
import { MdPhone, MdEmail } from 'react-icons/md';
|
||||
|
||||
@ -26,7 +28,9 @@ const Icons = {
|
||||
stackoverflow: FaStackOverflow,
|
||||
behance: FaBehance,
|
||||
gitlab: FaGitlab,
|
||||
birthdaycake: FaBirthdayCake,
|
||||
birthday: FaBirthdayCake,
|
||||
telegram: FaTelegram,
|
||||
skype: FaSkype,
|
||||
};
|
||||
|
||||
export default Icons;
|
||||
|
||||
Reference in New Issue
Block a user