Skip to content

Commit f6c2167

Browse files
use null instead of empty string
1 parent e52fa24 commit f6c2167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class PodcastLaunchers extends Component {
5656
<h2 className={styles.headingChooseApp}>Subscribe via your installed podcast app</h2>
5757
<ul className={styles.podcastAppLinksWrapper}>
5858
{generateAppLinks(rssUrl).map(({ name, url, trackingId }) => (
59-
<li key={name} className={showLinksOnAllBreakpoints ? "" : styles.hidePodcastLinkAtWide}>
59+
<li key={name} className={showLinksOnAllBreakpoints ? null : styles.hidePodcastLinkAtWide}>
6060
<a
6161
href={url}
6262
className={styles.podcastAppLink}

0 commit comments

Comments
 (0)