Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #295 from hudovisk/master
Browse files Browse the repository at this point in the history
fix(SiteFooter): removes unnecessary default value
  • Loading branch information
jonthomp committed Aug 24, 2018
2 parents 989f864 + d9ab9b3 commit 1f8e21c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/Site/SiteFooter.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,7 @@ export type Props = {|
/**
* The footer of your website
*/
const SiteFooter = ({
links = [],
note,
copyright,
nav,
}: Props): React.Node => (
const SiteFooter = ({ links, note, copyright, nav }: Props): React.Node => (
<React.Fragment>
{(links || note) && (
<div className="footer">
Expand Down

0 comments on commit 1f8e21c

Please sign in to comment.