Skip to content

Commit

Permalink
Merge fda1c67 into a71708c
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOrz committed Oct 16, 2018
2 parents a71708c + fda1c67 commit 36f6875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Hyperlinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function Hyperlink({ hyperlink = Map() }) {
* @param {List} props.hyperlinks
*/
function Hyperlinks({ hyperlinks = List() }) {
if (hyperlinks.size === 0) return null;
if (!hyperlinks || hyperlinks.size === 0) return null;

return (
<section className="links">
Expand Down

0 comments on commit 36f6875

Please sign in to comment.