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

Commit

Permalink
fix(SiteFooter): removes unnecessary default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Hudo Assenco committed Aug 9, 2018
1 parent fa0f2aa commit d9ab9b3
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 d9ab9b3

Please sign in to comment.