diff --git a/gatsby-config.js b/gatsby-config.js index f2dcc0fa..050118cc 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -5,7 +5,7 @@ module.exports = { title: 'Reactive Resume', siteUrl: 'https://rxresu.me', description: 'A free and open source resume builder.', - version: '2.1.3', + version: '2.1.4', }, plugins: [ 'gatsby-plugin-react-helmet', diff --git a/src/styles/global.css b/src/styles/global.css index 663725e4..b229cc4b 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -77,7 +77,6 @@ section { top: 0; left: 0; right: 0; - zoom: 1; box-shadow: none; } } diff --git a/src/templates/blocks/Contact/ContactB.js b/src/templates/blocks/Contact/ContactB.js index 8cc3185b..6ff4fb39 100644 --- a/src/templates/blocks/Contact/ContactB.js +++ b/src/templates/blocks/Contact/ContactB.js @@ -8,7 +8,7 @@ import Icons from '../Icons'; const ContactItem = ({ value, icon, link }) => { const { data } = useContext(PageContext); - const Icon = get(Icons, icon.toLowerCase(), FaCaretRight); + const Icon = get(Icons, icon && icon.toLowerCase(), FaCaretRight); return value ? (