diff --git a/components/x-podcast-launchers/src/PodcastLaunchers.jsx b/components/x-podcast-launchers/src/PodcastLaunchers.jsx index ecbd084e2..f1940744e 100644 --- a/components/x-podcast-launchers/src/PodcastLaunchers.jsx +++ b/components/x-podcast-launchers/src/PodcastLaunchers.jsx @@ -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 && ( diff --git a/components/x-podcast-launchers/stories/example.js b/components/x-podcast-launchers/stories/example.js index 4954dfdd7..f5d570892 100644 --- a/components/x-podcast-launchers/stories/example.js +++ b/components/x-podcast-launchers/stories/example.js @@ -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