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

Commit 1f8e21c

Browse files
authored
Merge pull request #295 from hudovisk/master
fix(SiteFooter): removes unnecessary default value
2 parents 989f864 + d9ab9b3 commit 1f8e21c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/components/Site/SiteFooter.react.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,7 @@ export type Props = {|
2525
/**
2626
* The footer of your website
2727
*/
28-
const SiteFooter = ({
29-
links = [],
30-
note,
31-
copyright,
32-
nav,
33-
}: Props): React.Node => (
28+
const SiteFooter = ({ links, note, copyright, nav }: Props): React.Node => (
3429
<React.Fragment>
3530
{(links || note) && (
3631
<div className="footer">

0 commit comments

Comments
 (0)