Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
fix: fix constructor issue with social button builder
Browse files Browse the repository at this point in the history
  • Loading branch information
filipowm committed Jul 3, 2020
1 parent 3be9caa commit 6349bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Header/social.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const SocialButtonsBuilder = (baseProps) => {
}

export default (iconBaseProps, socialConfig) => {
const buttons = new SocialButtonsBuilder(iconBaseProps);
const buttons = SocialButtonsBuilder(iconBaseProps);
buttons.create(socialConfig.facebook, 'Facebook', link => link);
buttons.create(socialConfig.github, 'Github', link => link);
buttons.create(socialConfig.gitlab, 'Gitlab', link => link);
Expand Down

0 comments on commit 6349bb4

Please sign in to comment.