Skip to content

Commit

Permalink
Set showLinksOnAllBreakpoints to default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
alicebartlett committed Jan 13, 2020
1 parent d78e07d commit 33ab220
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/x-podcast-launchers/src/PodcastLaunchers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class PodcastLaunchers extends Component {

render() {
const { rssUrl } = this.state;
const { conceptId, conceptName, csrfToken, isFollowed, renderFollowButton, showLinksOnAllBreakpoints } = this.props
const { conceptId, conceptName, csrfToken, isFollowed, renderFollowButton, showLinksOnAllBreakpoints = true } = this.props
const followButton = typeof renderFollowButton === 'function' ? renderFollowButton : defaultFollowButtonRender;

return rssUrl && (
Expand Down
2 changes: 1 addition & 1 deletion components/x-podcast-launchers/stories/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exports.data = {
csrfToken: 'token',
acastRSSHost: 'https://access.acast.com',
acastAccessToken: 'abc-123',
showLinksOnAllBreakpoints: true,
showLinksOnAllBreakpoints: false,
};

// This reference is only required for hot module loading in development
Expand Down

0 comments on commit 33ab220

Please sign in to comment.