mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-26 01:44:53 +10:00
- fix black screen issue when in certain templates
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ module.exports = {
|
|||||||
title: 'Reactive Resume',
|
title: 'Reactive Resume',
|
||||||
siteUrl: 'https://rxresu.me',
|
siteUrl: 'https://rxresu.me',
|
||||||
description: 'A free and open source resume builder.',
|
description: 'A free and open source resume builder.',
|
||||||
version: '2.1.3',
|
version: '2.1.4',
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
'gatsby-plugin-react-helmet',
|
'gatsby-plugin-react-helmet',
|
||||||
|
|||||||
@@ -77,7 +77,6 @@ section {
|
|||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
zoom: 1;
|
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import Icons from '../Icons';
|
|||||||
|
|
||||||
const ContactItem = ({ value, icon, link }) => {
|
const ContactItem = ({ value, icon, link }) => {
|
||||||
const { data } = useContext(PageContext);
|
const { data } = useContext(PageContext);
|
||||||
const Icon = get(Icons, icon.toLowerCase(), FaCaretRight);
|
const Icon = get(Icons, icon && icon.toLowerCase(), FaCaretRight);
|
||||||
|
|
||||||
return value ? (
|
return value ? (
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
@@ -28,7 +28,7 @@ const ContactItem = ({ value, icon, link }) => {
|
|||||||
) : null;
|
) : null;
|
||||||
};
|
};
|
||||||
|
|
||||||
const ContactA = () => {
|
const ContactB = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const { data } = useContext(PageContext);
|
const { data } = useContext(PageContext);
|
||||||
|
|
||||||
@@ -63,4 +63,4 @@ const ContactA = () => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default memo(ContactA);
|
export default memo(ContactB);
|
||||||
|
|||||||
Reference in New Issue
Block a user