Skip to content

Commit 33ab220

Browse files
committed
Set showLinksOnAllBreakpoints to default to true
1 parent d78e07d commit 33ab220

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/x-podcast-launchers/src/PodcastLaunchers.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class PodcastLaunchers extends Component {
4848

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

5454
return rssUrl && (

components/x-podcast-launchers/stories/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exports.data = {
99
csrfToken: 'token',
1010
acastRSSHost: 'https://access.acast.com',
1111
acastAccessToken: 'abc-123',
12-
showLinksOnAllBreakpoints: true,
12+
showLinksOnAllBreakpoints: false,
1313
};
1414

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

0 commit comments

Comments
 (0)